File size: 252 Bytes
7b7496d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #ifndef LITE_WINDOW_H
#define LITE_WINDOW_H
class LiteWindow {
public:
LiteWindow() {}
virtual ~LiteWindow() {}
int IsValid() { return 0; }
void MakeCurrent() {}
void Create(int x = -1, int y = -1, const char* display = NULL) {}
};
#endif
|