Parent Directory
|
Revision Log
First import
| 1 | bearsoft | 1.1 | #ifndef __ScreenData_H__ |
| 2 | #define __ScreenData_H__ | ||
| 3 | |||
| 4 | class ScreenData | ||
| 5 | { | ||
| 6 | |||
| 7 | public: | ||
| 8 | |||
| 9 | ScreenData(); | ||
| 10 | ~ScreenData(); | ||
| 11 | |||
| 12 | static int getWidth(); | ||
| 13 | static int getHeight(); | ||
| 14 | static int *getChunkyBuffer(); | ||
| 15 | static void setWidth(int iWidth); | ||
| 16 | static void setHeight(int iHeight); | ||
| 17 | static void setChunkyBuffer(int *iChunkyBuffer); | ||
| 18 | static void setBitPlan(int iBitPlan); | ||
| 19 | static int getBitPlan(); | ||
| 20 | |||
| 21 | private: | ||
| 22 | }; | ||
| 23 | |||
| 24 | #endif |
| root@recompile.se | ViewVC Help |
| Powered by ViewVC 1.1.26 |