X-Git-Url: http://pilppa.org/gitweb/?p=lib1wire.git;a=blobdiff_plain;f=src%2FDevice.hh;fp=src%2FDevice.hh;h=0000000000000000000000000000000000000000;hp=f5ee509671d92219c34a283eb8220c1893c86cf4;hb=a7002b0a87c5f17b542dfbd44f482014a191df97;hpb=da203ad44792ca37320768f4cbe68587c4806910 diff --git a/src/Device.hh b/src/Device.hh deleted file mode 100644 index f5ee509..0000000 --- a/src/Device.hh +++ /dev/null @@ -1,30 +0,0 @@ -/* - * GenericDevice.hh - * - * Created on: Feb 28, 2011 - * Author: lamikr - */ - -#ifndef DEVICETYPEGENERIC_HH_ -#define DEVICETYPEGENERIC_HH_ - -#include - -#include "DataReader.hh" - -namespace plp { - enum EnumDeviceLifeCycleStatus {LIFECYCLE_STATUS__UNAVAILABLE, LIFECYCLE_STATUS__AVAILABLE}; - - class Device { - public: - virtual std::string get_id() = 0; - virtual std::string get_name() = 0; - virtual void set_name(std::string name_param) = 0; - virtual std::string get_device_type() = 0; - virtual plp::DataReader *get_device_data() = 0; - virtual EnumDeviceLifeCycleStatus get_lifecycle_state() = 0; - virtual void printout() = 0; - }; -} - -#endif /* DEVICETYPEGENERIC_HH_ */