/usr/include/urg/MonitorDataHandler.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 56 57 58 59 60 61 62 | #ifndef QRK_MONITOR_DATA_HANDLER_H
#define QRK_MONITOR_DATA_HANDLER_H
/*!
\file
\brief ���j�^�f�[�^�Ǘ�
\author Satofumi KAMIMURA
$Id: MonitorDataHandler.h 783 2009-05-05 08:56:26Z satofumi $
*/
#include "MonitorModeManager.h"
#include "DetectOS.h"
#include <string>
#ifdef MSC
#define snprintf _snprintf
#endif
namespace qrk
{
/*!
\brief ���j�^�f�[�^�Ǘ��N���X
�f�[�^�t�H�[�}�b�g�́A�Q�s����\�������
- �P�s��: �^�C���X�^���v, �f�[�^�o�C�g��
- �Q�s��: �f�[�^
�P�s�ڂɂ����āA# �ȍ~�̓R�����g�Ƃ݂Ȃ����
*/
class MonitorDataHandler
{
MonitorDataHandler(void);
MonitorDataHandler(const MonitorDataHandler& rhs);
MonitorDataHandler& operator = (const MonitorDataHandler& rhs);
struct pImpl;
std::auto_ptr<pImpl> pimpl;
public:
explicit MonitorDataHandler(std::string file,
MonitorModeManager::MonitorMode mode);
~MonitorDataHandler(void);
int fetch(char* data, int size, const char* comment = NULL);
/*!
\attention ���s���������镶����f�[�^�́A�����Ȃ�
*/
int fetch(std::string& data, const char* comment = NULL);
int fetch(bool& data, const char* comment = NULL);
int fetch(int& data, const char* comment = NULL);
int fetch(unsigned int& data, const char* comment = NULL);
int fetch(short& data, const char* comment = NULL);
int fetch(long& data, const char* comment = NULL);
};
}
#endif /* !QRK_MONITOR_DATA_HANDLER_H */
|