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