Changeset 25197 in vbox for trunk/src/VBox/Main
- Timestamp:
- Dec 4, 2009 5:32:03 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 55678
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/USBControllerImpl.cpp
r25195 r25197 40 40 41 41 #include <algorithm> 42 #include "objectslist.h"43 42 44 43 // defines -
trunk/src/VBox/Main/include/USBControllerImpl.h
r25194 r25197 26 26 27 27 #include "VirtualBoxBase.h" 28 #ifdef VBOX_WITH_USB29 # include "USBDeviceFilterImpl.h"30 #endif31 32 #include <list>33 28 34 29 class Machine; 35 30 class HostUSBDevice; 31 class USBDeviceFilter; 36 32 37 33 namespace settings … … 39 35 struct USBController; 40 36 } 41 42 /**43 * @note we cannot use VirtualBoxBaseWithTypedChildren <USBDeviceFilter> as a44 * base class, because we want a quick (map-based) way of validating45 * IUSBDeviceFilter pointers passed from outside as method parameters that46 * VirtualBoxBaseWithChildren::getDependentChild() gives us.47 */48 37 49 38 class ATL_NO_VTABLE USBController :
Note:
See TracChangeset
for help on using the changeset viewer.