Changeset 90 for trunk/src/video.h
- Timestamp:
- Aug 11, 2010, 5:39:36 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/video.h
r47 r90 1 1 2 2 /* 3 * The video driver3 * The video interface 4 4 */ 5 5 … … 7 7 #define __DH_VIDEO_H__ 8 8 9 class VideoData;10 11 9 class Video 12 10 { 13 11 public: 14 Video(char const *title, int width, int height);15 ~Video();12 //Video(char const *title, int width, int height); 13 //virtual ~Video(); 16 14 17 int GetWidth() const; 18 int GetHeight() const; 19 void Clear(); 20 void Refresh(float milliseconds); 21 void FullScreen(); 22 23 private: 24 VideoData *data; 15 virtual int GetWidth() const = 0; 16 virtual int GetHeight() const = 0; 17 virtual void Clear() = 0; 18 virtual void Refresh(float milliseconds) = 0; 19 virtual void FullScreen() = 0; 25 20 }; 26 21
Note: See TracChangeset
for help on using the changeset viewer.