Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / BilatTools_Cuda_Image / src / core / cudaImageTools / fonctionel / header / AnimableFonctionel_I.h
diff --git a/WCudaMSE/BilatTools_Cuda_Image/src/core/cudaImageTools/fonctionel/header/AnimableFonctionel_I.h b/WCudaMSE/BilatTools_Cuda_Image/src/core/cudaImageTools/fonctionel/header/AnimableFonctionel_I.h
new file mode 100755 (executable)
index 0000000..6fb67ce
--- /dev/null
@@ -0,0 +1,48 @@
+#ifndef ANIMABLE_FONCTIONEL_I_H_\r
+#define ANIMABLE_FONCTIONEL_I_H_\r
+\r
+#include <iostream>\r
+\r
+#include "cudaTools.h"\r
+#include "DomaineMath.h"\r
+\r
+using std::string;\r
+\r
+\r
+\r
+/*----------------------------------------------------------------------*\\r
+ |*                    Declaration                                     *|\r
+ \*---------------------------------------------------------------------*/\r
+\r
+/*--------------------------------------*\\r
+ |*            Public                  *|\r
+ \*-------------------------------------*/\r
+\r
+class AnimableFonctionel_I\r
+    {\r
+    public:\r
+\r
+       //virtual ~Animable_I(void)=0;\r
+\r
+       virtual void runGPU(uchar4* ptrDevPixels,const DomaineMath& domaineMath)=0;\r
+       virtual void animationStep(void)=0;\r
+\r
+       virtual int getW(void)=0;\r
+       virtual int getH(void)=0;\r
+       virtual DomaineMath* getDomaineMathInit(void)=0;\r
+\r
+       /**\r
+        * getParaAnimation\r
+        */\r
+       virtual float getT(void)=0;\r
+\r
+       virtual string getTitle(void)=0;\r
+\r
+    };\r
+\r
+#endif\r
+\r
+/*----------------------------------------------------------------------*\\r
+ |*                    End                                             *|\r
+ \*---------------------------------------------------------------------*/\r
+\r