Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / Tuto_Doxy / src / header / Cat.h
1 #ifndef CAT_H_
2 #define CAT_H_
3
4 #include "Animals.h"
5
6 /*----------------------------------------------------------------------*\
7 |* Declaration *|
8 \*---------------------------------------------------------------------*/
9
10 /*--------------------------------------*\
11 |* Public *|
12 \*-------------------------------------*/
13
14 /**
15 * @class Cat
16 * @brief Represent the ensemble of Cats
17 *
18 * <pre>
19 * Here you can write the full documentation of teh class Animal.
20 * It's up to you!
21 * </pre>
22 *
23 * http://en.wikipedia.org
24 */
25 class Cat: public Animals
26 {
27 public:
28
29 /**
30 * Create a Cat
31 * @param poids in kg
32 */
33 Cat(int poids);
34
35 /**
36 * Destructor
37 */
38 virtual ~Cat();
39
40 /**
41 * Override the virtual pure methode eat of Animal
42 */
43 void eat();
44
45 };
46
47 #endif
48
49 /*----------------------------------------------------------------------*\
50 |* End *|
51 \*---------------------------------------------------------------------*/