Changeset 6073 for code/trunk/src/libraries/core/DynLib.h
- Timestamp:
- Nov 15, 2009, 11:44:58 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/DynLib.h
r5738 r6073 72 72 Resource 73 73 */ 74 74 class _CoreExport DynLib 75 75 { 76 77 76 protected: 77 std::string mName; 78 78 /// Gets the last loading error 79 79 std::string dynlibError(void); … … 95 95 */ 96 96 void unload(); 97 98 97 /// Get the name of the library 98 const std::string& getName(void) const { return mName; } 99 99 100 100 /**
Note: See TracChangeset
for help on using the changeset viewer.