Changes in src/Actions/ActionRegistry.hpp [b2c302:2aad5a]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/ActionRegistry.hpp
rb2c302 r2aad5a 48 48 int getLastPosition(const std::string &MenuName) const; 49 49 50 /** Static getter for the state of the registry. 51 * 52 * @return true - ActionRegistry's cstor has run through, false - else 53 */ 54 static bool getCompletely_instatiated() 55 { return completely_instatiated; } 56 50 57 private: 51 58 ActionRegistry(); … … 53 60 54 61 void fillRegistry(); 62 63 //!> this tells whether ActionRegistry has been completed instantiated. 64 static bool completely_instatiated; 55 65 }; 56 66
Note:
See TracChangeset
for help on using the changeset viewer.