Changeset 54314 in vbox for trunk/include
- Timestamp:
- Feb 19, 2015 9:32:18 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 98389
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/settings.h
r54311 r54314 312 312 typedef std::list<MachineRegistryEntry> MachinesRegistry; 313 313 314 typedef std::map<DhcpOpt_T, com::Utf8Str> DhcpOptionMap; 314 struct DhcpOptValue 315 { 316 enum Encoding { 317 LEGACY, 318 HEX, 319 }; 320 321 com::Utf8Str text; 322 Encoding encoding; 323 324 DhcpOptValue() 325 : text(), encoding(LEGACY) {} 326 327 DhcpOptValue(const com::Utf8Str &aText, Encoding aEncoding = LEGACY) 328 : text(aText), encoding(aEncoding) {} 329 }; 330 331 typedef std::map<DhcpOpt_T, DhcpOptValue> DhcpOptionMap; 315 332 typedef DhcpOptionMap::value_type DhcpOptValuePair; 316 333 typedef DhcpOptionMap::iterator DhcpOptIterator;
Note:
See TracChangeset
for help on using the changeset viewer.