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

#include <widgets.h>

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

#endif