blob: b29f002c038e7c6943cc64b3476a27be630177a2 [file] [log] [blame] [raw]
#ifndef DEVREADER_LINUX_PROC_H
#define DEVREADER_LINUX_PROC_H
#include "devreader.h"
#include <string>
#include <list>
class DevReaderLinuxProc : public DevReader
{
public:
DevReaderLinuxProc(const std::string& deviceName);
virtual ~DevReaderLinuxProc();
static bool isAvailable();
static std::list<std::string> findAllDevices();
protected:
void readFromDevice(DataFrame& dataFrame);
};
#endif