Show
Ignore:
Timestamp:
10/16/08 19:54:32 (5 years ago)
Author:
smoors
Message:

renamed action-class to "Action" as a preparation for merge with trunk

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/midiAutosense/libs/hydrogen/include/hydrogen/action.h

    r549 r575  
    2929 
    3030 
    31 class action : public Object { 
     31class Action : public Object { 
    3232        public: 
    33                 action( QString ); 
     33                Action( QString ); 
    3434                 
    3535                QString getType(); 
     
    5151 
    5252 
    53 class actionManager : public Object 
     53class ActionManager : public Object 
    5454{ 
    5555        private: 
    56                 static actionManager *instance; 
     56                static ActionManager *instance; 
    5757                QStringList actionList; 
    5858                QStringList eventList; 
    5959 
    6060        public: 
    61                 static actionManager* getInstance(); 
     61                static ActionManager* getInstance(); 
    6262 
    63                 bool handleAction( action * ); 
     63                bool handleAction( Action * ); 
    6464                 
    6565                QStringList getActionList(); 
    6666                QStringList getEventList(); 
    6767 
    68                 actionManager(); 
    69                 ~actionManager(); 
     68                ActionManager(); 
     69                ~ActionManager(); 
    7070}; 
    7171#endif