Changeset 87 in pacpusframework for trunk/src/FileLib
- Timestamp:
- Mar 27, 2013, 4:38:14 PM (12 years ago)
- Location:
- trunk/src/FileLib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/FileLib/CMakeLists.txt
r64 r87 44 44 target_link_libraries( 45 45 ${PROJECT_NAME} 46 PacpusLib47 46 ) 48 47 -
trunk/src/FileLib/src/DbiteException.cpp
r86 r87 9 9 using namespace pacpus; 10 10 11 //DbiteException::DbiteException(const std::string& what)12 //: mWhat(what)13 //{14 //}11 DbiteException::DbiteException(const std::string& what) 12 : mWhat(what) 13 { 14 } 15 15 16 //DbiteException::~DbiteException() throw()17 //{18 //}16 DbiteException::~DbiteException() throw() 17 { 18 } 19 19 20 //const char* DbiteException::what() const throw()21 //{22 //return mWhat.c_str();23 //}20 const char* DbiteException::what() const throw() 21 { 22 return mWhat.c_str(); 23 }
Note:
See TracChangeset
for help on using the changeset viewer.