Changeset 37200 in vbox for trunk/include/VBox/settings.h
- Timestamp:
- May 24, 2011 3:34:06 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/settings.h
r36275 r37200 18 18 19 19 /* 20 * Copyright (C) 2007-201 0Oracle Corporation20 * Copyright (C) 2007-2011 Oracle Corporation 21 21 * 22 22 * This file is part of VirtualBox Open Source Edition (OSE), as … … 440 440 fTraceEnabled(false), 441 441 mode(NetworkAttachmentType_Null), 442 ulBootPriority(0), 443 fHasDisabledNAT(false) 442 ulBootPriority(0) 444 443 {} 445 444 … … 459 458 NetworkAttachmentType_T mode; 460 459 NAT nat; 461 /** 462 * @remarks NAT has own attribute with bridged: host interface or empty; 463 * otherwise: network name (required) */ 464 com::Utf8Str strName; 460 com::Utf8Str strBridgedName; 461 com::Utf8Str strHostOnlyName; 462 com::Utf8Str strInternalNetworkName; 463 com::Utf8Str strGenericDriver; 464 StringsMap genericProperties; 465 465 uint32_t ulBootPriority; 466 bool fHasDisabledNAT;467 466 com::Utf8Str strBandwidthGroup; // requires settings version 1.13 (VirtualBox 4.2) 468 467 }; … … 1036 1035 1037 1036 void buildHardwareXML(xml::ElementNode &elmParent, const Hardware &hw, const Storage &strg); 1038 void buildNetworkXML(NetworkAttachmentType_T mode, xml::ElementNode &elmParent, const NetworkAdapter &nic);1037 void buildNetworkXML(NetworkAttachmentType_T mode, xml::ElementNode &elmParent, bool fEnabled, const NetworkAdapter &nic); 1039 1038 void buildStorageControllersXML(xml::ElementNode &elmParent, 1040 1039 const Storage &st,
Note:
See TracChangeset
for help on using the changeset viewer.