Changeset 37709 in vbox for trunk/src/VBox/Main/include/MediumAttachmentImpl.h
- Timestamp:
- Jun 30, 2011 1:51:51 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MediumAttachmentImpl.h
r37695 r37709 47 47 LONG aDevice, 48 48 DeviceType_T aType, 49 bool fImplicit, 49 50 bool fPassthrough, 51 bool fTempEject, 50 52 const Utf8Str &strBandwidthGroup); 51 53 void uninit(); … … 61 63 STDMETHOD(COMGETTER(Type))(DeviceType_T *aType); 62 64 STDMETHOD(COMGETTER(Passthrough))(BOOL *aPassthrough); 65 STDMETHOD(COMGETTER(TemporaryEject))(BOOL *aTemporaryEject); 63 66 STDMETHOD(COMGETTER(IsEjected))(BOOL *aIsEjected); 64 67 STDMETHOD(COMGETTER(BandwidthGroup))(IBandwidthGroup **aBwGroup); … … 79 82 DeviceType_T getType() const; 80 83 bool getPassthrough() const; 84 bool getTempEject() const; 81 85 const Utf8Str& getBandwidthGroup() const; 82 86 … … 88 92 /** Must be called from under this object's write lock. */ 89 93 void updatePassthrough(bool aPassthrough); 94 95 /** Must be called from under this object's write lock. */ 96 void updateTempEject(bool aTempEject); 90 97 91 98 /** Must be called from under this object's write lock. */
Note:
See TracChangeset
for help on using the changeset viewer.