Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / Tuto_Doxy / src / main.cpp
1 #include <iostream>
2 #include <stdlib.h>
3
4 #include "Cat.h"
5
6 using std::cout;
7 using std::endl;
8
9 /*----------------------------------------------------------------------*\
10 |* Declaration *|
11 \*---------------------------------------------------------------------*/
12
13 /*--------------------------------------*\
14 |* Imported *|
15 \*-------------------------------------*/
16
17 /*--------------------------------------*\
18 |* Public *|
19 \*-------------------------------------*/
20
21 int main(void);
22
23 /*--------------------------------------*\
24 |* Private *|
25 \*-------------------------------------*/
26
27 /*----------------------------------------------------------------------*\
28 |* Implementation *|
29 \*---------------------------------------------------------------------*/
30
31 /*--------------------------------------*\
32 |* Public *|
33 \*-------------------------------------*/
34
35 int main(void)
36 {
37 cout << "Doxygene projetTuto" << endl;
38
39 Cat cat(10);
40 cout<<"cat poids = "<<cat.getPoids()<<endl;
41 cat.eat();
42
43 return EXIT_SUCCESS;
44 }
45
46 /*----------------------------------------------------------------------*\
47 |* End *|
48 \*---------------------------------------------------------------------*/
49