- Timestamp:
- 10/16/08 19:54:32 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/midiAutosense/libs/hydrogen/include/hydrogen/action.h
r549 r575 29 29 30 30 31 class action : public Object {31 class Action : public Object { 32 32 public: 33 action( QString );33 Action( QString ); 34 34 35 35 QString getType(); … … 51 51 52 52 53 class actionManager : public Object53 class ActionManager : public Object 54 54 { 55 55 private: 56 static actionManager *instance;56 static ActionManager *instance; 57 57 QStringList actionList; 58 58 QStringList eventList; 59 59 60 60 public: 61 static actionManager* getInstance();61 static ActionManager* getInstance(); 62 62 63 bool handleAction( action * );63 bool handleAction( Action * ); 64 64 65 65 QStringList getActionList(); 66 66 QStringList getEventList(); 67 67 68 actionManager();69 ~ actionManager();68 ActionManager(); 69 ~ActionManager(); 70 70 }; 71 71 #endif