Go to the documentation of this file.00001 #ifndef QRK_IS_USB_COM_H
00002 #define QRK_IS_USB_COM_H
00003
00013 #include <vector>
00014 #include <string>
00015
00016
00017 namespace qrk
00018 {
00020 class IsUsbCom {
00021 public:
00022 virtual ~IsUsbCom(void) {
00023 }
00024
00025
00033 virtual std::vector<std::string> baseNames(void) const
00034 {
00035 std::vector<std::string> dummy;
00036 return dummy;
00037 }
00038
00039
00047 virtual std::vector<std::string> usbDrivers(void) const
00048 {
00049 std::vector<std::string> dummy;
00050 return dummy;
00051 }
00052 };
00053 }
00054
00055 #endif