Changeset 0c0b2d4 in rtems-tools for rtemstoolkit/rld.h
- Timestamp:
- Apr 3, 2016, 5:37:01 AM (4 years ago)
- Branches:
- 4.10, master
- Children:
- 2e97351
- Parents:
- dfa2468
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
rtemstoolkit/rld.h
rdfa2468 r0c0b2d4 30 30 #include <functional> 31 31 #include <iostream> 32 #include <list> 32 33 #include <locale> 33 34 #include <sstream> … … 64 65 class archive; 65 66 class object; 67 class cache; 68 typedef std::list < object* > object_list; 66 69 } 67 70 } … … 180 183 181 184 /** 185 * Parse version string of format major.minor.revision where revieion can be 186 * a git hash. 187 */ 188 void version_parse (const std::string& str, 189 uint64_t& major, 190 uint64_t& minor, 191 uint64_t& revision); 192 193 /** 182 194 * Increment the verbose level. 183 195 */ … … 194 206 */ 195 207 const std::string version (); 208 209 /** 210 * Get the major version number. 211 */ 212 uint64_t version_major (); 213 214 /** 215 * Get the minor version number. 216 */ 217 uint64_t version_minor (); 218 219 /** 220 * Get the revision version number. 221 */ 222 uint64_t version_revision (); 196 223 197 224 /**
Note: See TracChangeset
for help on using the changeset viewer.