VirtualBox

source: vbox/trunk/src/VBox/Main/include/USBDeviceImpl.h@ 31571

Last change on this file since 31571 was 30739, checked in by vboxsync, 14 years ago

Main: remove VirtualBoxSupportTranslation template, add translation support to generic base class, clean up COM headers more, remove SupportErrorInfo.cpp|h

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.6 KB
Line 
1/* $Id: USBDeviceImpl.h 30739 2010-07-08 12:27:42Z vboxsync $ */
2
3/** @file
4 * Header file for the OUSBDevice (IUSBDevice) class, VBoxC.
5 */
6
7/*
8 * Copyright (C) 2006-2009 Oracle Corporation
9 *
10 * This file is part of VirtualBox Open Source Edition (OSE), as
11 * available from http://www.virtualbox.org. This file is free software;
12 * you can redistribute it and/or modify it under the terms of the GNU
13 * General Public License (GPL) as published by the Free Software
14 * Foundation, in version 2 as it comes in the "COPYING" file of the
15 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17 */
18
19#ifndef ____H_USBDEVICEIMPL
20#define ____H_USBDEVICEIMPL
21
22#include "VirtualBoxBase.h"
23
24/**
25 * Object class used for maintaining devices attached to a USB controller.
26 * Generally this contains much less information.
27 */
28class ATL_NO_VTABLE OUSBDevice :
29 public VirtualBoxBase,
30 VBOX_SCRIPTABLE_IMPL(IUSBDevice)
31{
32public:
33
34 VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(OUSBDevice, IUSBDevice)
35
36 DECLARE_NOT_AGGREGATABLE(OUSBDevice)
37
38 DECLARE_PROTECT_FINAL_CONSTRUCT()
39
40 BEGIN_COM_MAP(OUSBDevice)
41 COM_INTERFACE_ENTRY (ISupportErrorInfo)
42 COM_INTERFACE_ENTRY (IUSBDevice)
43 COM_INTERFACE_ENTRY2 (IDispatch, IUSBDevice)
44 END_COM_MAP()
45
46 DECLARE_EMPTY_CTOR_DTOR (OUSBDevice)
47
48 HRESULT FinalConstruct();
49 void FinalRelease();
50
51 // public initializer/uninitializer for internal purposes only
52 HRESULT init (IUSBDevice *a_pUSBDevice);
53 void uninit();
54
55 // IUSBDevice properties
56 STDMETHOD(COMGETTER(Id))(BSTR *aId);
57 STDMETHOD(COMGETTER(VendorId))(USHORT *aVendorId);
58 STDMETHOD(COMGETTER(ProductId))(USHORT *aProductId);
59 STDMETHOD(COMGETTER(Revision))(USHORT *aRevision);
60 STDMETHOD(COMGETTER(Manufacturer))(BSTR *aManufacturer);
61 STDMETHOD(COMGETTER(Product))(BSTR *aProduct);
62 STDMETHOD(COMGETTER(SerialNumber))(BSTR *aSerialNumber);
63 STDMETHOD(COMGETTER(Address))(BSTR *aAddress);
64 STDMETHOD(COMGETTER(Port))(USHORT *aPort);
65 STDMETHOD(COMGETTER(Version))(USHORT *aVersion);
66 STDMETHOD(COMGETTER(PortVersion))(USHORT *aPortVersion);
67 STDMETHOD(COMGETTER(Remote))(BOOL *aRemote);
68
69 // public methods only for internal purposes
70 const Guid &id() const { return mData.id; }
71
72private:
73
74 struct Data
75 {
76 Data() : vendorId (0), productId (0), revision (0), port (0),
77 version (1), portVersion (1), remote (FALSE) {}
78
79 /** The UUID of this device. */
80 const Guid id;
81
82 /** The vendor id of this USB device. */
83 const USHORT vendorId;
84 /** The product id of this USB device. */
85 const USHORT productId;
86 /** The product revision number of this USB device.
87 * (high byte = integer; low byte = decimal) */
88 const USHORT revision;
89 /** The Manufacturer string. (Quite possibly NULL.) */
90 const Bstr manufacturer;
91 /** The Product string. (Quite possibly NULL.) */
92 const Bstr product;
93 /** The SerialNumber string. (Quite possibly NULL.) */
94 const Bstr serialNumber;
95 /** The host specific address of the device. */
96 const Bstr address;
97 /** The host port number. */
98 const USHORT port;
99 /** The major USB version number of the device. */
100 const USHORT version;
101 /** The major USB version number of the port the device is attached to. */
102 const USHORT portVersion;
103 /** Remote (VRDP) or local device. */
104 const BOOL remote;
105 };
106
107 Data mData;
108};
109
110#endif // ____H_USBDEVICEIMPL
111/* vi: set tabstop=4 shiftwidth=4 expandtab: */
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette