Changeset 38873 in vbox for trunk/src/VBox/Main/include/MediumAttachmentImpl.h
- Timestamp:
- Sep 27, 2011 8:58:22 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MediumAttachmentImpl.h
r38718 r38873 51 51 bool fTempEject, 52 52 bool fNonRotational, 53 bool fDiscard, 53 54 const Utf8Str &strBandwidthGroup); 54 55 HRESULT initCopy(Machine *aParent, MediumAttachment *aThat); … … 68 69 STDMETHOD(COMGETTER(IsEjected))(BOOL *aIsEjected); 69 70 STDMETHOD(COMGETTER(NonRotational))(BOOL *aNonRotational); 71 STDMETHOD(COMGETTER(Discard))(BOOL *aDiscard); 70 72 STDMETHOD(COMGETTER(BandwidthGroup))(IBandwidthGroup **aBwGroup); 71 73 … … 87 89 bool getTempEject() const; 88 90 bool getNonRotational() const; 91 bool getDiscard() const; 89 92 const Utf8Str& getBandwidthGroup() const; 90 93 … … 102 105 /** Must be called from under this object's write lock. */ 103 106 void updateNonRotational(bool aNonRotational); 107 108 /** Must be called from under this object's write lock. */ 109 void updateDiscard(bool aDiscard); 104 110 105 111 /** Must be called from under this object's write lock. */
Note:
See TracChangeset
for help on using the changeset viewer.