- Timestamp:
- Jan 10, 2016, 1:54:11 PM (9 years ago)
- Location:
- code/branches/cpp11_v3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v3
- Property svn:mergeinfo changed
-
code/branches/cpp11_v3/src/libraries/core/config/ConfigFileManager.h
r9559 r11054 38 38 #include "core/CorePrereqs.h" 39 39 40 #include < boost/array.hpp>40 #include <array> 41 41 42 42 #include "util/Singleton.h" … … 67 67 68 68 private: 69 ConfigFileManager(const ConfigFileManager&); ///< Copy-constructor: not implemented 69 // non-copyable: 70 ConfigFileManager(const ConfigFileManager&) = delete; 71 ConfigFileManager& operator=(const ConfigFileManager&) = delete; 70 72 71 boost::array<ConfigFile*, 3> configFiles_;///< Stores the config files for each type in an array (must have the same size like ConfigFileType::Value)73 std::array<ConfigFile*, 3> configFiles_; ///< Stores the config files for each type in an array (must have the same size like ConfigFileType::Value) 72 74 static ConfigFileManager* singletonPtr_s; ///< Stores the singleton-pointer 73 75 };
Note: See TracChangeset
for help on using the changeset viewer.