class wxAcceleratorTable: public wxObject
{
- DECLARE_DYNAMIC_CLASS(wxAcceleratorTable)
-
- public:
+public:
wxAcceleratorTable();
wxAcceleratorTable(int n, wxAcceleratorEntry entries[] );
~wxAcceleratorTable();
bool Ok() const;
-// private:
+// implementation
- int GetCommand( wxKeyEvent &event );
+ int GetCommand( wxKeyEvent &event );
+private:
+ DECLARE_DYNAMIC_CLASS(wxAcceleratorTable)
};
#endif