]> Creatis software - crea.git/blob - appli/creaNewProject/NewProject/lib/mySampleLib/myFierceClass.h
74a8dfefe288338aba8bea5dd1a204ab281f1db5
[crea.git] / appli / creaNewProject / NewProject / lib / mySampleLib / myFierceClass.h
1 #ifndef _myFierceClass_H_
2 #define _myFierceClass_H_
3
4 //#include "mySampleLib_EXPORT.h"
5 //---------------------------------------------
6 // dummy class 
7 // the job is done by a function that receives arguments and returns a value
8 //---------------------------------------------
9
10 class /*mySampleLib_EXPORT*/ myFierceClass
11 {
12    public :
13       myFierceClass() {};
14       ~myFierceClass(){};
15       double Calculate(double a, double b);
16       
17    private:
18
19 };
20
21 //-----------------------------------------------------------------------------
22 #endif