Changeset 36275 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Mar 14, 2011 6:01:34 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 70549
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/NetworkAdapterImpl.h
r36082 r36275 23 23 #include "VirtualBoxBase.h" 24 24 #include "NATEngineImpl.h" 25 #include "BandwidthGroupImpl.h" 25 26 26 27 class GuestOSType; … … 71 72 Bstr mNATNetwork; 72 73 ULONG mBootPriority; 73 ULONG mBandwidthLimit;74 ComObjPtr<BandwidthGroup> mBandwidthGroup; 74 75 }; 75 76 … … 125 126 STDMETHOD(COMGETTER(BootPriority)) (ULONG *aBootPriority); 126 127 STDMETHOD(COMSETTER(BootPriority)) (ULONG aBootPriority); 127 STDMETHOD(COMGETTER(Bandwidth Limit)) (ULONG *aLimit);128 STDMETHOD(COMSETTER(Bandwidth Limit)) (ULONG aLimit);128 STDMETHOD(COMGETTER(BandwidthGroup)) (IBandwidthGroup **aBwGroup); 129 STDMETHOD(COMSETTER(BandwidthGroup)) (IBandwidthGroup *aBwGroup); 129 130 130 131 // INetworkAdapter methods … … 138 139 // public methods only for internal purposes 139 140 140 HRESULT loadSettings( const settings::NetworkAdapter &data);141 HRESULT loadSettings(BandwidthControl *bwctl, const settings::NetworkAdapter &data); 141 142 HRESULT saveSettings(settings::NetworkAdapter &data); 142 143 … … 151 152 void detach(); 152 153 void generateMACAddress(); 154 HRESULT updateMacAddress(Utf8Str aMacAddress); 155 void updateBandwidthGroup(BandwidthGroup *aBwGroup); 153 156 154 157 Machine * const mParent;
Note:
See TracChangeset
for help on using the changeset viewer.