/usr/include/urg/IsUsbCom.h is in liburg0-dev 0.8.18-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | #ifndef QRK_IS_USB_COM_H
#define QRK_IS_USB_COM_H
/*!
\file
\brief USB �|�[�g���ǂ����ʂ���
\author Satofumi KAMIMURA
$Id: IsUsbCom.h 1811 2010-04-30 16:12:05Z satofumi $
*/
#include <vector>
#include <string>
namespace qrk
{
//! USB �|�[�g�̔��ʃN���X
class IsUsbCom {
public:
virtual ~IsUsbCom(void) {
}
/*!
\brief �o�^�ς݂̃|�[�g�̃x�[�X����Ԃ�
Linux �����ŗp����
\return �|�[�g�̃x�[�X��
*/
virtual std::vector<std::string> baseNames(void) const
{
std::vector<std::string> dummy;
return dummy;
}
/*!
\brief �D��\������h���C�o����Ԃ�
Windows �����ŗp����
\return �h���C�o��
*/
virtual std::vector<std::string> usbDrivers(void) const
{
std::vector<std::string> dummy;
return dummy;
}
};
}
#endif /* !QRK_IS_USB_COM_H */
|