X-Git-Url: http://git.euphorik.ch/index.cgi?a=blobdiff_plain;f=WCudaMSE%2FAPI_Bilat_Image_GL%2FINC%2Fcommon%2FPrimitives_A.h;fp=WCudaMSE%2FAPI_Bilat_Image_GL%2FINC%2Fcommon%2FPrimitives_A.h;h=9b25350c63010c8b14e44cd64d64ae4a8a068c79;hb=8d08c12b29c2a14684f35c023ee39e694bb80d25;hp=0000000000000000000000000000000000000000;hpb=226de81f7e1f1fbf4ac79d0d089e8a05ec7159a0;p=GPU.git diff --git a/WCudaMSE/API_Bilat_Image_GL/INC/common/Primitives_A.h b/WCudaMSE/API_Bilat_Image_GL/INC/common/Primitives_A.h new file mode 100755 index 0000000..9b25350 --- /dev/null +++ b/WCudaMSE/API_Bilat_Image_GL/INC/common/Primitives_A.h @@ -0,0 +1,56 @@ +#ifndef PRIMITIVES_A_H +#define PRIMITIVES_A_H + +#include "envGLImage.h" +#include "PrimitiveVisitors_I.h" + +/*----------------------------------------------------------------------*\ + |* Declaration *| + \*---------------------------------------------------------------------*/ + +/*--------------------------------------*\ + |* Public *| + \*-------------------------------------*/ + +class CBI_GLIMAGE Primitives_A + { + public: + + /*--------------------------------------*\ + |* Constructor *| + \*-------------------------------------*/ + + Primitives_A() + { + isNeedToDelete = false; + } + + /*--------------------------------------*\ + |* Destructor *| + \*-------------------------------------*/ + + virtual ~Primitives_A() + { + //Nothing + } + + /*--------------------------------------*\ + |* Methodes *| + \*-------------------------------------*/ + public: + virtual void accept(PrimitiveVisitors_I &visitor)=0; + + /*--------------------------------------*\ + |* Attributs *| + \*-------------------------------------*/ + + public: + + bool isNeedToDelete; + }; + +#endif + +/*----------------------------------------------------------------------*\ + |* End *| + \*---------------------------------------------------------------------*/