X-Git-Url: http://git.euphorik.ch/index.cgi?a=blobdiff_plain;f=WCudaMSE%2FAPI_Bilat_Image_GL%2FINC%2Fcommon%2FWiredRect2Ds.h;fp=WCudaMSE%2FAPI_Bilat_Image_GL%2FINC%2Fcommon%2FWiredRect2Ds.h;h=3c266be8acf3234684d9c764a62045dad5b4e2a1;hb=8d08c12b29c2a14684f35c023ee39e694bb80d25;hp=0000000000000000000000000000000000000000;hpb=226de81f7e1f1fbf4ac79d0d089e8a05ec7159a0;p=GPU.git diff --git a/WCudaMSE/API_Bilat_Image_GL/INC/common/WiredRect2Ds.h b/WCudaMSE/API_Bilat_Image_GL/INC/common/WiredRect2Ds.h new file mode 100755 index 0000000..3c266be --- /dev/null +++ b/WCudaMSE/API_Bilat_Image_GL/INC/common/WiredRect2Ds.h @@ -0,0 +1,55 @@ +#ifndef WIREDRECT2DS_H +#define WIREDRECT2DS_H + +#include "Rect2Ds.h" + +/*----------------------------------------------------------------------*\ + |* Declaration *| + \*---------------------------------------------------------------------*/ + +/*--------------------------------------*\ + |* Public *| + \*-------------------------------------*/ + +class CBI_GLIMAGE WiredRect2Ds: public Rect2Ds + { + public: + + /*--------------------------------------*\ + |* Constructor *| + \*-------------------------------------*/ + + WiredRect2Ds(int x, int y, int width, int height) : + Rect2Ds(x, y, width, height) + { + //Nothing + } + + /*--------------------------------------*\ + |* Destructor *| + \*-------------------------------------*/ + + virtual ~WiredRect2Ds() + { + //Nothing + } + + /*--------------------------------------*\ + |* Methodes *| + \*-------------------------------------*/ + + /** + * Override + */ + virtual void accept(PrimitiveVisitors_I &visitor) + { + visitor.visite(this); + } + }; + +#endif + +/*----------------------------------------------------------------------*\ + |* End *| + \*---------------------------------------------------------------------*/ +