projects
/
ccbs
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added a generic display screen class.
[ccbs]
/
bigscreen
/
screen.h
1
#ifndef _SCREEN_H
2
#define _SCREEN_H 1
3
4
class Screen {
5
protected:
6
Screen();
7
8
public:
9
virtual bool check_invalidated() = 0;
10
virtual void draw(unsigned char *buf) = 0;
11
};
12
13
#endif /* !defined(_SCREEN_H) */