diff options
Diffstat (limited to 'src/View.cxx')
-rw-r--r-- | src/View.cxx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/View.cxx b/src/View.cxx new file mode 100644 index 0000000..d7f3195 --- /dev/null +++ b/src/View.cxx @@ -0,0 +1,13 @@ +namespace PluggIt { + +class View +{ + public virtual void config( DFBDimension &size ) = 0; + + public virtual void update( const vector<DFBRectangle_C> &rects, + void *ptr, + int pitch ) = 0; +}; + +} + |