Changeset 7646 for code/branches/releasetodo/src/libraries
- Timestamp:
- Nov 13, 2010, 10:00:19 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/releasetodo/src/libraries/core/Loader.cc
r7628 r7646 88 88 } 89 89 90 /** 91 @brief 92 Loads all opened files, while conforming to the restrictions given by the input ClassTreeMask. 93 @param mask 94 A ClassTreeMask, which defines which types of classes are loaded and which aren't. 95 @param verbose 96 Whether the loader is verbose (prints its progress in a low output level) or not. 97 @return 98 Returns true if successful. 99 */ 90 100 bool Loader::load(const ClassTreeMask& mask, bool verbose) 91 101 { … … 109 119 } 110 120 121 /** 122 @brief 123 Reloads all opened files, while conforming to the restrictions given by the input ClassTreeMask. 124 @param mask 125 A ClassTreeMask, which defines which types of classes are reloaded and which aren't. 126 @param verbose 127 Whether the loader is verbose (prints its progress in a low output level) or not. 128 @return 129 Returns true if successful. 130 */ 111 131 bool Loader::reload(const ClassTreeMask& mask, bool verbose) 112 132 { … … 115 135 } 116 136 137 /** 138 @brief 139 Loads the input file, while conforming to the restrictions given by the input ClassTreeMask. 140 @param file 141 The file to be loaded. 142 @param mask 143 A ClassTreeMask, which defines which types of classes are loaded and which aren't. 144 @param verbose 145 Whether the loader is verbose (prints its progress in a low output level) or not. 146 @return 147 Returns true if successful. 148 */ 117 149 bool Loader::load(const XMLFile* file, const ClassTreeMask& mask, bool verbose) 118 150 { … … 221 253 } 222 254 255 /** 256 @brief 257 Reloads the input file, while conforming to the restrictions given by the input ClassTreeMask. 258 @param file 259 The file to be reloaded. 260 @param mask 261 A ClassTreeMask, which defines which types of classes are reloaded and which aren't. 262 @param verbose 263 Whether the loader is verbose (prints its progress in a low output level) or not. 264 @return 265 Returns true if successful. 266 */ 223 267 bool Loader::reload(const XMLFile* file, const ClassTreeMask& mask, bool verbose) 224 268 {
Note: See TracChangeset
for help on using the changeset viewer.