From 0e03940802cebefdf6b0597a154bd9395e1af4d2 Mon Sep 17 00:00:00 2001 From: Olivier Gayot Date: Wed, 18 Jun 2014 15:45:45 +0200 Subject: Add the vanilla version of the project This version can still be found here: http://www.roland-riegel.de/nload/index.html --- src/devreader-linux.cpp | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/devreader-linux.cpp (limited to 'src/devreader-linux.cpp') diff --git a/src/devreader-linux.cpp b/src/devreader-linux.cpp new file mode 100644 index 0000000..5b6e9eb --- /dev/null +++ b/src/devreader-linux.cpp @@ -0,0 +1,33 @@ +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#include "devreader-linux.h" +#include "devreader-linux-proc.h" +#include "devreader-linux-sys.h" + +#include +#include + +using namespace std; + +bool DevReaderLinux::isAvailable() +{ + return DevReaderLinuxSys::isAvailable() || DevReaderLinuxProc::isAvailable(); +} + +list DevReaderLinux::findAllDevices() +{ + if(DevReaderLinuxSys::isAvailable()) + return DevReaderLinuxSys::findAllDevices(); + else if(DevReaderLinuxProc::isAvailable()) + return DevReaderLinuxProc::findAllDevices(); + else + return list(); +} + -- cgit v1.2.3