Changeset 60107 in vbox for trunk/src/VBox/Main/include/USBProxyBackend.h
- Timestamp:
- Mar 19, 2016 10:22:46 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 106110
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/USBProxyBackend.h
r60089 r60107 26 26 #include <iprt/poll.h> 27 27 #include <iprt/semaphore.h> 28 #include <iprt/cpp/utils.h> 28 29 29 30 #include "VirtualBoxBase.h" … … 52 53 bool isActive(void); 53 54 const com::Utf8Str &i_getId(); 55 const com::Utf8Str &i_getAddress(); 56 virtual const com::Utf8Str &i_getBackend(); 54 57 uint32_t i_getRefCount(); 55 58 … … 117 120 /** Id of the instance. */ 118 121 const com::Utf8Str m_strId; 122 /** Address of the instance. */ 123 const com::Utf8Str m_strAddress; 124 /** Backend identifier as used in the settings. */ 125 const com::Utf8Str m_strBackend; 119 126 /** Reference counter which prevents the backend instance from being removed. */ 120 127 uint32_t m_cRefs; … … 140 147 int init(USBProxyService *pUsbProxyService, const com::Utf8Str &strId, const com::Utf8Str &strAddress); 141 148 void uninit(); 149 150 const com::Utf8Str &i_getBackend(); 142 151 143 152 virtual void *insertFilter(PCUSBFILTER aFilter);
Note:
See TracChangeset
for help on using the changeset viewer.