Changeset 2101 for code/branches/objecthierarchy/src/util/SignalHandler.h
- Timestamp:
- Nov 2, 2008, 12:09:55 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/util/SignalHandler.h
r2030 r2101 71 71 void registerCallback( SignalCallback cb, void * someData ); 72 72 73 void doCatch( const std::string & appName, const std::string & file Name );73 void doCatch( const std::string & appName, const std::string & filename ); 74 74 void dontCatch(); 75 75 … … 85 85 86 86 std::string appName; 87 std::string file Name;87 std::string filename; 88 88 89 89 // used to turn on KeyAutoRepeat if OIS crashes … … 97 97 public: 98 98 inline static SignalHandler* getInstance() { if (!SignalHandler::singletonRef) SignalHandler::singletonRef = new SignalHandler(); return SignalHandler::singletonRef; }; 99 void doCatch( const std::string & appName, const std::string & file Name ) {};99 void doCatch( const std::string & appName, const std::string & filename ) {}; 100 100 void dontCatch() {}; 101 101 void registerCallback( SignalCallback cb, void * someData ) {};
Note: See TracChangeset
for help on using the changeset viewer.