#ifndef DEF_TOUR #define DEF_TOUR /* [1] Libs =========================================================*/ /* (1) Internes */ /* (2) Externes */ #include "Piece.h" /* (3) Namespace */ using namespace std; /* [2] Definition =========================================================*/ class Tour : public Piece{ public: Tour(int x, int y); // ABSTRACT bool can(const int x, const int y) const; char getchar(); }; /* [n] Inclusion du corps =========================================================*/ #include "Tour.cpp" #endif