Changeset 7297 for code/branches/doc/src/libraries/core/DynLibManager.h
- Timestamp:
- Aug 31, 2010, 8:37:29 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/doc/src/libraries/core/DynLibManager.h
r5738 r7297 56 56 57 57 public: 58 /** Default constructor. 59 @note 60 <br>Should never be called as the singleton is automatically 61 created during the creation of the Root object. 62 @see 63 Root::Root 58 /** 59 @brief 60 Default constructor. 61 @note 62 Should never be called as the singleton is automatically 63 created during the creation of the Root object. 64 @see 65 Root::Root 64 66 */ 65 67 DynLibManager(); 66 68 67 /** Default destructor. 68 @see 69 Root::~Root 69 /** 70 @brief 71 Default destructor. 72 @see 73 Root::~Root 70 74 */ 71 75 virtual ~DynLibManager(); 72 76 73 /** Loads the passed library. 74 @param 75 filename The name of the library. The extension can be omitted 77 /** 78 @brief 79 Loads the passed library. 80 @param filename 81 The name of the library. The extension can be omitted 76 82 */ 77 83 DynLib* load(const std::string& filename); 78 84 79 /** Unloads the passed library. 80 @param 81 filename The name of the library. The extension can be omitted 85 /** 86 @brief 87 Unloads the passed library. 88 @param lib 89 A pointer to the library object 82 90 */ 83 91 void unload(DynLib* lib);
Note: See TracChangeset
for help on using the changeset viewer.