X-Git-Url: http://git.euphorik.ch/index.cgi?a=blobdiff_plain;f=WCudaMSE%2FAPI_Bilat_Image_GL%2FINC%2Fcpu%2FDomaineEcran_CPU.h;fp=WCudaMSE%2FAPI_Bilat_Image_GL%2FINC%2Fcpu%2FDomaineEcran_CPU.h;h=16b1598f4fbc595e1b5507663384efe72772b1b2;hb=8d08c12b29c2a14684f35c023ee39e694bb80d25;hp=0000000000000000000000000000000000000000;hpb=226de81f7e1f1fbf4ac79d0d089e8a05ec7159a0;p=GPU.git diff --git a/WCudaMSE/API_Bilat_Image_GL/INC/cpu/DomaineEcran_CPU.h b/WCudaMSE/API_Bilat_Image_GL/INC/cpu/DomaineEcran_CPU.h new file mode 100755 index 0000000..16b1598 --- /dev/null +++ b/WCudaMSE/API_Bilat_Image_GL/INC/cpu/DomaineEcran_CPU.h @@ -0,0 +1,55 @@ +#ifndef DOMAINE_ECRAN_CPU_H +#define DOMAINE_ECRAN_CPU_H + +#include "envGLImage.h" +#include +using std::string; + +/*----------------------------------------------------------------------*\ + |* Declaration *| + \*---------------------------------------------------------------------*/ + +/*--------------------------------------*\ + |* Public *| + \*-------------------------------------*/ + +namespace cpu + { + class CBI_GLIMAGE DomaineEcran + { + + /*--------------------------------------*\ + |* Constructor *| + \*-------------------------------------*/ + + public: + + DomaineEcran(int x = 0, int y = 0, int dx = 1, int dy = 1); + + /*--------------------------------------*\ + |* Methodes *| + \*-------------------------------------*/ + + public: + + string toString(); + + /*-------------------------------------*\ + |* Attributs *| + \*------------------------------------*/ + + public: + + //Input + int x0; + int y0; + int dx; + int dy; + }; + } +#endif + +/*----------------------------------------------------------------------*\ + |* End *| + \*---------------------------------------------------------------------*/ +