File: ISensor.h

package info (click to toggle)
libexadrums 0.7.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 652 kB
  • sloc: cpp: 6,970; ansic: 220; makefile: 160; sh: 12
file content (38 lines) | stat: -rw-r--r-- 561 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
 * Sensor.h
 *
 *  Created on: 25 Oct 2015
 *      Author: jeremy
 */

#ifndef LIBEXADRUMS_SOURCE_IO_ISENSOR_H_
#define LIBEXADRUMS_SOURCE_IO_ISENSOR_H_

#include <memory>

namespace IO
{

	class ISensor
	{

	public:

		virtual short GetData() = 0;
		virtual void SetData(short value) = 0;
		virtual bool IsDigital() const { return isDigital; }

		virtual ~ISensor() = default;

	protected:

		bool isDigital{false};
		size_t channel{};

	};

	using ISensorPtr = std::unique_ptr<ISensor>;

} /* namespace IO */

#endif /* LIBEXADRUMS_SOURCE_IO_ISENSOR_H_ */