summaryrefslogtreecommitdiff
path: root/src/View.cxx
blob: d7f3195fe0dc324ff34d4ae950d576b0bde79642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;
};

}