Changeset 24989 in vbox for trunk/src/VBox/Main/include/MediumAttachmentImpl.h
- Timestamp:
- Nov 26, 2009 11:31:46 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/MediumAttachmentImpl.h
r24934 r24989 80 80 void setImplicit(bool aImplicit) { m->implicit = aImplicit; } 81 81 82 const ComObjPtr<Medium> &medium() const { return m->medium; }83 Bstr controllerName() const { return m->controllerName; }84 LONG port() const { return m->port; }85 LONG device() const { return m->device; }86 DeviceType_T type() const { return m->type; }87 bool passthrough() const { AutoReadLock lock(this); return m->passthrough; }82 const ComObjPtr<Medium>& getMedium() const { return m->medium; } 83 Bstr getControllerName() const { return m->controllerName; } 84 LONG getPort() const { return m->port; } 85 LONG getDevice() const { return m->device; } 86 DeviceType_T getType() const { return m->type; } 87 bool getPassthrough() const { AutoReadLock lock(this); return m->passthrough; } 88 88 89 89 bool matches(CBSTR aControllerName, LONG aPort, LONG aDevice) … … 110 110 111 111 /** Get a unique and somewhat descriptive name for logging. */ 112 const char *logName(void) const { return mLogName.c_str(); }112 const char* getLogName(void) const { return mLogName.c_str(); } 113 113 114 114 /** For com::SupportErrorInfoImpl. */
Note:
See TracChangeset
for help on using the changeset viewer.