Changeset 7401 for code/trunk/src/libraries/core/DynLibManager.h
- Timestamp:
- Sep 11, 2010, 12:34:00 AM (15 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/doc (added) merged: 7290-7292,7296-7300,7302-7304,7306-7312,7315-7318,7323,7325,7327,7331-7332,7334-7335,7345-7347,7352-7353,7356-7357,7361,7363-7367,7371-7375,7388
- Property svn:mergeinfo changed
-
code/trunk/src/libraries/core/DynLibManager.h
r5738 r7401 30 30 // 08/11/2009: Small adjustments for Orxonox by Fabian 'x3n' Landau 31 31 32 /** 33 @file 34 @ingroup Management CoreGame 35 @brief Declaration of DynLibManager, used to load modules at runtime. 36 */ 37 32 38 #ifndef _Core_DynLibManager_H__ 33 39 #define _Core_DynLibManager_H__ … … 56 62 57 63 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 64 /** 65 @brief 66 Default constructor. 67 @note 68 Should never be called as the singleton is automatically 69 created during the creation of the Root object. 70 @see 71 Root::Root 64 72 */ 65 73 DynLibManager(); 66 74 67 /** Default destructor. 68 @see 69 Root::~Root 75 /** 76 @brief 77 Default destructor. 78 @see 79 Root::~Root 70 80 */ 71 81 virtual ~DynLibManager(); 72 82 73 /** Loads the passed library. 74 @param 75 filename The name of the library. The extension can be omitted 83 /** 84 @brief 85 Loads the passed library. 86 @param filename 87 The name of the library. The extension can be omitted 76 88 */ 77 89 DynLib* load(const std::string& filename); 78 90 79 /** Unloads the passed library. 80 @param 81 filename The name of the library. The extension can be omitted 91 /** 92 @brief 93 Unloads the passed library. 94 @param lib 95 A pointer to the library object 82 96 */ 83 97 void unload(DynLib* lib);
Note: See TracChangeset
for help on using the changeset viewer.