/* $Id$ */ #ifndef __MWOO_WIDGET_CHECKBOX_H__ #define __MWOO_WIDGET_CHECKBOX_H__ #include namespace MwOO { class CheckBox : public MwOO::Base { public: CheckBox(const char* widget_name, MwOO::Base* parent, int x, int y, int w, int h); void SetPixmap(void* value); void* GetPixmap(void); }; } // namespace MwOO #endif