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