Suppression de io, qui n'est plus utilisé.

This commit is contained in:
Georges Dupéron 2011-11-28 10:32:23 +01:00
parent 0e5b8ef954
commit f5cc3dc243
4 changed files with 3 additions and 24 deletions

View File

@ -4,7 +4,7 @@ CCWARN=-Wall -Wextra -Werror
# -flto (nécessite GCC 4.5) -m32 ou -m64
CFLAGS=-O3 -g3 -I. $(CCWARN)
OBJECTS = main.o hash.o segment.o vertex.o triangle.o io.o rules/chose.o rules/rectangleroutes.o rules/route.o rules/carrefour.o rules/batiment.o
OBJECTS = main.o hash.o segment.o vertex.o triangle.o rules/chose.o rules/rectangleroutes.o rules/route.o rules/carrefour.o rules/batiment.o
EXECUTABLE = city
.PHONY: test

View File

@ -1,6 +1,8 @@
#ifndef _ALL_INCLUDES_HH_
#define _ALL_INCLUDES_HH_
class Chose;
#include <iostream>
#include <cstdlib>
#include <cmath>
@ -10,15 +12,8 @@
#include "segment.hh"
#include "triangle.hh"
#include "directions.hh"
#include "io.hh"
#include "hash.hh"
class Chose;
// class Batiment;
// class Carrefour;
// class Route;
// class RectangleRoutes;
#include "rules/chose.hh"
#include "rules/batiment.hh"
#include "rules/carrefour.hh"

3
io.cpp
View File

@ -1,3 +0,0 @@
#include "io.hh"
IO::IO(): in(0), out(0) {}

13
io.hh
View File

@ -1,13 +0,0 @@
#ifndef _IO_HH_
#define _IO_HH_
class IO {
public:
int in;
int out;
public:
IO();
//IO(int in, int out);
};
#endif