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

#include "Exceptions.h"

namespace mogltk {
    class widget : public Base {
      public:
          widget();
	  virtual ~widget();
    };
};

#endif