summaryrefslogtreecommitdiff
path: root/include/glwidgets.h
blob: 241dd55246600956a584ce0869617d71fe149503 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __GLWIDGETS_H__
#define __GLWIDGETS_H__

#include <widgets.h>

namespace mogltk {
    namespace widgets {
        class glRoot : public Root {
          public:
              glRoot(shape *);
          protected:
            virtual void draw();
        };
    };
};

#endif