Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 274 Bytes

DMXObject.h

File metadata and controls

17 lines (15 loc) · 274 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef INCLUDE_DMXOBJECT
#define INCLUDE_DMXOBJECT
#include <gtk/gtk.h>
class DMXObject
{
public:
DMXObject();
virtual ~DMXObject();
virtual GtkWidget *GetWidget(void)=0;
virtual GtkMenuItem *GetMenu(void);
void Show(void);
void Hide(void);
private:
};
#endif