X-Git-Url: http://git.euphorik.ch/?a=blobdiff_plain;f=WCudaMSE%2FBilatTools_Cuda_Image%2Fsrc%2Fcore%2FcudaImageTools%2Fbitmap%2Fheader%2FAnimable_I.h;fp=WCudaMSE%2FBilatTools_Cuda_Image%2Fsrc%2Fcore%2FcudaImageTools%2Fbitmap%2Fheader%2FAnimable_I.h;h=35686412878f4c17b29d9bf1963e2894ac3d7d6b;hb=8d08c12b29c2a14684f35c023ee39e694bb80d25;hp=0000000000000000000000000000000000000000;hpb=226de81f7e1f1fbf4ac79d0d089e8a05ec7159a0;p=GPU.git diff --git a/WCudaMSE/BilatTools_Cuda_Image/src/core/cudaImageTools/bitmap/header/Animable_I.h b/WCudaMSE/BilatTools_Cuda_Image/src/core/cudaImageTools/bitmap/header/Animable_I.h new file mode 100755 index 0000000..3568641 --- /dev/null +++ b/WCudaMSE/BilatTools_Cuda_Image/src/core/cudaImageTools/bitmap/header/Animable_I.h @@ -0,0 +1,43 @@ +#ifndef ANIMABLE_I_H_ +#define ANIMABLE_I_H_ + +#include +#include "cudaTools.h" + +using std::string; + +/*----------------------------------------------------------------------*\ + |* Declaration *| + \*---------------------------------------------------------------------*/ + +/*--------------------------------------*\ + |* Public *| + \*-------------------------------------*/ + +class Animable_I + { + public: + + //virtual ~Animable_I(void)=0; + + virtual void runGPU(uchar4* ptrDevPixels)=0; + virtual void animationStep(void)=0; + + virtual int getW()=0; + virtual int getH()=0; + + /** + * getParaAnimation + */ + virtual float getT()=0; + + virtual string getTitle()=0; + + }; + +#endif + +/*----------------------------------------------------------------------*\ + |* End *| + \*---------------------------------------------------------------------*/ +