00001 #ifndef MYTHUI_GROUP_H_ 00002 #define MYTHUI_GROUP_H_ 00003 00004 #include "mythuitype.h" 00005 00011 class MUI_PUBLIC MythUIGroup : public MythUIType 00012 { 00013 00014 public: 00015 MythUIGroup(MythUIType *parent, const QString &name); 00016 ~MythUIGroup(); 00017 00018 void Reset(void); 00019 00020 protected: 00021 virtual void CopyFrom(MythUIType *base); 00022 virtual void CreateCopy(MythUIType *parent); 00023 }; 00024 00025 #endif