Changeset 15965 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jan 15, 2009 1:08:26 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/SharedFolderImpl.h
r15051 r15965 43 43 Data() {} 44 44 45 const Bstr mName; 46 const Bstr mHostPath; 47 BOOL mWritable; 45 const Bstr name; 46 const Bstr hostPath; 47 BOOL writable; 48 Bstr lastAccessError; 48 49 }; 49 50 … … 78 79 STDMETHOD(COMGETTER(Accessible)) (BOOL *aAccessible); 79 80 STDMETHOD(COMGETTER(Writable)) (BOOL *aWritable); 81 STDMETHOD(COMGETTER(LastAccessError)) (BSTR *aLastAccessError); 80 82 81 83 // public methods for internal purposes only … … 85 87 // (ensure there is a caller added before calling them!) 86 88 87 const Bstr &name() const { return m Data.mName; }88 const Bstr &hostPath() const { return m Data.mHostPath; }89 BOOL writable() const { return m Data.mWritable; }89 const Bstr &name() const { return m.name; } 90 const Bstr &hostPath() const { return m.hostPath; } 91 BOOL writable() const { return m.writable; } 90 92 91 93 // for VirtualBoxSupportErrorInfoImpl … … 106 108 const ComObjPtr <VirtualBox, ComWeakRef> mVirtualBox; 107 109 108 Data m Data;110 Data m; 109 111 }; 110 112
Note:
See TracChangeset
for help on using the changeset viewer.