Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / Tuto_Doxy / src / cpp / core / Cat.cpp
1 #include <iostream>
2
3 #include "Cat.h"
4
5 using std::cout;
6 using std::endl;
7
8
9 /*----------------------------------------------------------------------*\
10 |* Declaration *|
11 \*---------------------------------------------------------------------*/
12
13 /*--------------------------------------*\
14 |* Public *|
15 \*-------------------------------------*/
16
17 /*--------------------------------------*\
18 |* Private *|
19 \*-------------------------------------*/
20
21 /*----------------------------------------------------------------------*\
22 |* Implementation *|
23 \*---------------------------------------------------------------------*/
24
25 /*--------------------------------------*\
26 |* Public *|
27 \*-------------------------------------*/
28
29 Cat::Cat(int poids) :
30 Animals(poids)
31 {
32 //not appear in doxy doc
33 }
34
35 Cat::~Cat()
36 {
37 ///With tripe ///, comment appear in doxy doc
38 }
39
40 void Cat::eat()
41 {
42 cout<<"Fish"<<endl;
43 }
44
45 /*--------------------------------------*\
46 |* Private *|
47 \*-------------------------------------*/
48
49 /*----------------------------------------------------------------------*\
50 |* End *|
51 \*---------------------------------------------------------------------*/
52