- Timestamp:
- May 31, 2015, 10:22:59 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core7/src/libraries/core/singleton/ScopedSingletonIncludes.cc
r10462 r10514 33 33 void StaticallyInitializedScopedSingletonWrapper::load() 34 34 { 35 ScopeManager::getInstance().addListener(this->wrapper_ );35 ScopeManager::getInstance().addListener(this->wrapper_, this->scope_); 36 36 } 37 37 38 38 void StaticallyInitializedScopedSingletonWrapper::unload() 39 39 { 40 ScopeManager::getInstance().removeListener(this->wrapper_ );40 ScopeManager::getInstance().removeListener(this->wrapper_, this->scope_); 41 41 } 42 42 }
Note: See TracChangeset
for help on using the changeset viewer.