Changeset 7425 for sandbox_qt/src/libraries/core
- Timestamp:
- Sep 12, 2010, 3:12:55 PM (14 years ago)
- Location:
- sandbox_qt/src/libraries/core
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sandbox_qt/src/libraries/core/CMakeLists.txt
r7424 r7425 19 19 20 20 SET_SOURCE_FILES(CORE_SRC_FILES 21 Command lineParser.cc21 CommandLineParser.cc 22 22 Core.cc 23 23 PathConfig.cc -
sandbox_qt/src/libraries/core/Core.cc
r7424 r7425 37 37 38 38 #include <cassert> 39 #include <cstdlib> 39 40 #include <ctime> 40 41 #include <fstream> … … 107 108 /** 108 109 @brief 109 All destruction code is handled by QScopedPointers110 All destruction code is handled by std::auto_ptr 110 111 */ 111 112 Core::~Core() -
sandbox_qt/src/libraries/core/Core.h
r7424 r7425 44 44 #include "CorePrereqs.h" 45 45 46 #include <memory> 46 47 #include <string> 47 #include <QScopedPointer>48 48 #include <loki/ScopeGuard.h> 49 49 … … 86 86 // MANAGED SINGLETONS/OBJECTS 87 87 // Mind the order for the destruction! 88 QScopedPointer<PathConfig>pathConfig_;88 std::auto_ptr<PathConfig> pathConfig_; 89 89 90 90 int softDebugLevelLogFile_; //!< The debug level for the log file (belongs to OutputHandler)
Note: See TracChangeset
for help on using the changeset viewer.