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