Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / BilatTools_CPP / src / core / tools / header / namespace_cpu / IntervalI_CPU.h
1 #ifndef INTERVAL_I_CPU_H_
2 #define INTERVAL_I_CPU_H_
3
4 /*----------------------------------------------------------------------*\
5 |* Declaration *|
6 \*---------------------------------------------------------------------*/
7
8 /*--------------------------------------*\
9 |* Public *|
10 \*-------------------------------------*/
11
12 namespace cpu
13 {
14 class IntervalI
15 {
16
17 public:
18
19 IntervalI(int a, int b)
20 {
21 this->a = a;
22 this->b = b;
23 }
24
25 public:
26
27 int getA(void)
28 {
29 return this->a;
30 }
31
32 int getB(void)
33 {
34 return this->b;
35 }
36
37 public:
38
39 int a;
40 int b;
41 };
42
43 }
44 #endif
45
46 /*----------------------------------------------------------------------*\
47 |* End *|
48 \*---------------------------------------------------------------------*/