Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / API_Bilat_Image_GL / INC / cpu / DomaineEcran_CPU.h
1 #ifndef DOMAINE_ECRAN_CPU_H
2 #define DOMAINE_ECRAN_CPU_H
3
4 #include "envGLImage.h"
5 #include <string>
6 using std::string;
7
8 /*----------------------------------------------------------------------*\
9 |* Declaration *|
10 \*---------------------------------------------------------------------*/
11
12 /*--------------------------------------*\
13 |* Public *|
14 \*-------------------------------------*/
15
16 namespace cpu
17 {
18 class CBI_GLIMAGE DomaineEcran
19 {
20
21 /*--------------------------------------*\
22 |* Constructor *|
23 \*-------------------------------------*/
24
25 public:
26
27 DomaineEcran(int x = 0, int y = 0, int dx = 1, int dy = 1);
28
29 /*--------------------------------------*\
30 |* Methodes *|
31 \*-------------------------------------*/
32
33 public:
34
35 string toString();
36
37 /*-------------------------------------*\
38 |* Attributs *|
39 \*------------------------------------*/
40
41 public:
42
43 //Input
44 int x0;
45 int y0;
46 int dx;
47 int dy;
48 };
49 }
50 #endif
51
52 /*----------------------------------------------------------------------*\
53 |* End *|
54 \*---------------------------------------------------------------------*/
55