Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / API_Bilat_Image_GL / INC / common / WiredRect2Ds.h
1 #ifndef WIREDRECT2DS_H
2 #define WIREDRECT2DS_H
3
4 #include "Rect2Ds.h"
5
6 /*----------------------------------------------------------------------*\
7 |* Declaration *|
8 \*---------------------------------------------------------------------*/
9
10 /*--------------------------------------*\
11 |* Public *|
12 \*-------------------------------------*/
13
14 class CBI_GLIMAGE WiredRect2Ds: public Rect2Ds
15 {
16 public:
17
18 /*--------------------------------------*\
19 |* Constructor *|
20 \*-------------------------------------*/
21
22 WiredRect2Ds(int x, int y, int width, int height) :
23 Rect2Ds(x, y, width, height)
24 {
25 //Nothing
26 }
27
28 /*--------------------------------------*\
29 |* Destructor *|
30 \*-------------------------------------*/
31
32 virtual ~WiredRect2Ds()
33 {
34 //Nothing
35 }
36
37 /*--------------------------------------*\
38 |* Methodes *|
39 \*-------------------------------------*/
40
41 /**
42 * Override
43 */
44 virtual void accept(PrimitiveVisitors_I &visitor)
45 {
46 visitor.visite(this);
47 }
48 };
49
50 #endif
51
52 /*----------------------------------------------------------------------*\
53 |* End *|
54 \*---------------------------------------------------------------------*/
55