Peritoneal Dialysis Capstone
Controlling catheter for peritoneal dialysis
Loading...
Searching...
No Matches
IOutput.h
Go to the documentation of this file.
1
4
5#ifndef IOUTPUT_H
6#define IOUTPUT_H
7
13class IOutput {
14public:
15 virtual ~IOutput() = default;
16
20 virtual float getValue() = 0;
21
27 virtual void setValue(float value) = 0;
28};
29
30#endif // IOUTPUT_H
An analog output interface.
Definition IOutput.h:13
virtual ~IOutput()=default
virtual float getValue()=0
Returns the last value written to this output.
virtual void setValue(float value)=0
Writes a value to this output.