Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / API_Bilat_Image_GL / INC / common / WiredRect2Ds.h
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 (executable)
index 0000000..3c266be
--- /dev/null
@@ -0,0 +1,55 @@
+#ifndef WIREDRECT2DS_H\r
+#define WIREDRECT2DS_H\r
+\r
+#include "Rect2Ds.h"\r
+\r
+/*----------------------------------------------------------------------*\\r
+ |*                    Declaration                                     *|\r
+ \*---------------------------------------------------------------------*/\r
+\r
+/*--------------------------------------*\\r
+ |*            Public                  *|\r
+ \*-------------------------------------*/\r
+\r
+class CBI_GLIMAGE WiredRect2Ds: public Rect2Ds\r
+    {\r
+    public:\r
+\r
+       /*--------------------------------------*\\r
+        |*             Constructor             *|\r
+        \*-------------------------------------*/\r
+\r
+       WiredRect2Ds(int x, int y, int width, int height) :\r
+               Rect2Ds(x, y, width, height)\r
+           {\r
+           //Nothing\r
+           }\r
+\r
+       /*--------------------------------------*\\r
+        |*             Destructor              *|\r
+        \*-------------------------------------*/\r
+\r
+       virtual ~WiredRect2Ds()\r
+           {\r
+           //Nothing\r
+           }\r
+\r
+       /*--------------------------------------*\\r
+        |*             Methodes                *|\r
+        \*-------------------------------------*/\r
+\r
+       /**\r
+        * Override\r
+        */\r
+       virtual void accept(PrimitiveVisitors_I &visitor)\r
+           {\r
+           visitor.visite(this);\r
+           }\r
+    };\r
+\r
+#endif\r
+\r
+/*----------------------------------------------------------------------*\\r
+ |*                    End                                             *|\r
+ \*---------------------------------------------------------------------*/\r
+\r