Suppression de io, qui n'est plus utilisé.
This commit is contained in:
parent
0e5b8ef954
commit
f5cc3dc243
2
Makefile
2
Makefile
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue
Block a user