Changeset 1445 for code/branches/network/src
- Timestamp:
- May 28, 2008, 1:12:45 AM (17 years ago)
- Location:
- code/branches/network/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/network/src/core/XMLPort.h
r1209 r1445 166 166 } 167 167 } 168 catch (ticpp::Exception& ex)168 catch (ticpp::Exception& ex) 169 169 { 170 170 COUT(1) << std::endl; … … 344 344 } 345 345 } 346 catch (ticpp::Exception& ex)346 catch (ticpp::Exception& ex) 347 347 { 348 348 COUT(1) << std::endl; -
code/branches/network/src/ois/CMakeLists.txt
r1219 r1445 37 37 38 38 ADD_LIBRARY( ois SHARED ${OIS_SRC_FILES} ) 39 40 IF(WIN32) 41 LINK_DIRECTORIES(${DirectX_LIB_DIR}) 42 TARGET_LINK_LIBRARIES( ois 43 dxguid 44 dinput8 45 ) 46 ENDIF(WIN32) 47 -
code/branches/network/src/ois/OISException.cpp
r1219 r1445 26 26 27 27 //----------------------------------------------------------------------------// 28 const char* Exception::what() const throw()28 /*const char* Exception::what() const throw() 29 29 { 30 30 return eText; 31 31 } 32 32 */ -
code/branches/network/src/ois/OISException.h
r1219 r1445 58 58 : eType(err), eLine(line), eFile(file), eText(str) {} 59 59 60 ~Exception() throw() {} 61 62 virtual const char* what() const throw(); 60 virtual const char* what() const throw() 61 { return eText; } 63 62 64 63 //! The type of exception raised
Note: See TracChangeset
for help on using the changeset viewer.