X-Git-Url: http://git.euphorik.ch/index.cgi?a=blobdiff_plain;f=WCudaMSE%2FTuto_Doxy%2Fsrc%2Fheader%2FCat.h;fp=WCudaMSE%2FTuto_Doxy%2Fsrc%2Fheader%2FCat.h;h=eed4d639655720395338f0e1e8d6f49ea2cc1ec9;hb=8d08c12b29c2a14684f35c023ee39e694bb80d25;hp=0000000000000000000000000000000000000000;hpb=226de81f7e1f1fbf4ac79d0d089e8a05ec7159a0;p=GPU.git diff --git a/WCudaMSE/Tuto_Doxy/src/header/Cat.h b/WCudaMSE/Tuto_Doxy/src/header/Cat.h new file mode 100755 index 0000000..eed4d63 --- /dev/null +++ b/WCudaMSE/Tuto_Doxy/src/header/Cat.h @@ -0,0 +1,51 @@ +#ifndef CAT_H_ +#define CAT_H_ + +#include "Animals.h" + +/*----------------------------------------------------------------------*\ + |* Declaration *| + \*---------------------------------------------------------------------*/ + +/*--------------------------------------*\ + |* Public *| + \*-------------------------------------*/ + +/** + * @class Cat + * @brief Represent the ensemble of Cats + * + *
+ * Here you can write the full documentation of teh class Animal.
+ * It's up to you!
+ * 
+ * + * http://en.wikipedia.org + */ +class Cat: public Animals + { + public: + + /** + * Create a Cat + * @param poids in kg + */ + Cat(int poids); + + /** + * Destructor + */ + virtual ~Cat(); + + /** + * Override the virtual pure methode eat of Animal + */ + void eat(); + + }; + +#endif + +/*----------------------------------------------------------------------*\ + |* End *| + \*---------------------------------------------------------------------*/