29 lines
506 B
C++
29 lines
506 B
C++
#ifndef _ALL_INCLUDES_HH_
|
|
#define _ALL_INCLUDES_HH_
|
|
|
|
#include <iostream>
|
|
#include <cstdlib>
|
|
#include <cmath>
|
|
#include <vector>
|
|
|
|
#include "vertex.hh"
|
|
#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"
|
|
#include "rules/route.hh"
|
|
#include "rules/rectangleroutes.hh"
|
|
|
|
#endif
|