Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / API_Bilat_Image_GL / INC / common / Text2Ds.h
diff --git a/WCudaMSE/API_Bilat_Image_GL/INC/common/Text2Ds.h b/WCudaMSE/API_Bilat_Image_GL/INC/common/Text2Ds.h
new file mode 100755 (executable)
index 0000000..a324216
--- /dev/null
@@ -0,0 +1,60 @@
+#ifndef TEXT2DS_H\r
+#define TEXT2DS_H\r
+\r
+#include "Primitives_A.h"\r
+#include "Font_A.h"\r
+\r
+#include <string>\r
+using std::string;\r
+\r
+/*----------------------------------------------------------------------*\\r
+ |*                    Declaration                                     *|\r
+ \*---------------------------------------------------------------------*/\r
+\r
+/*--------------------------------------*\\r
+ |*            Public                  *|\r
+ \*-------------------------------------*/\r
+\r
+class CBI_GLIMAGE Text2Ds : public Primitives_A\r
+    {\r
+    public:\r
+\r
+       /*--------------------------------------*\\r
+        |*             Constructor             *|\r
+        \*-------------------------------------*/\r
+\r
+       Text2Ds(int x,int y,string texte,const Font_A* font);\r
+\r
+       /*--------------------------------------*\\r
+        |*             Destructor              *|\r
+        \*-------------------------------------*/\r
+\r
+       virtual ~Text2Ds();\r
+\r
+       /*--------------------------------------*\\r
+        |*             Methodes                *|\r
+        \*-------------------------------------*/\r
+\r
+       /**\r
+        * Override\r
+        */\r
+       void accept(PrimitiveVisitors_I &visitor);\r
+\r
+       /*--------------------------------------*\\r
+        |*             Attributs               *|\r
+        \*-------------------------------------*/\r
+\r
+    public:\r
+\r
+       //Input\r
+       string texte;\r
+       const Font_A* font;\r
+       int x;\r
+       int y;\r
+    };\r
+\r
+#endif\r
+\r
+/*----------------------------------------------------------------------*\\r
+ |*                    End                                             *|\r
+ \*---------------------------------------------------------------------*/\r