blob: d22c9f7af12179a8301ffb6187fe33e58817b10d [file] [log] [blame] [raw]
#ifndef DEVREADER_LINUX_H
#define DEVREADER_LINUX_H
#include <string>
#include <list>
class DevReaderLinux
{
public:
static bool isAvailable();
static std::list<std::string> findAllDevices();
};
#endif