Peritoneal Dialysis Capstone
Controlling catheter for peritoneal dialysis
Loading...
Searching...
No Matches
IDisplay.h
Go to the documentation of this file.
1
4
5#ifndef IDISPLAY_H
6#define IDISPLAY_H
7
13class IDisplay {
14public:
15 virtual ~IDisplay() = default;
16
21 virtual void initialize() = 0;
22
29 virtual void update(float channel1Power, float channel2Power) = 0;
30};
31
32#endif // IDISPLAY_H
An interface for displaying important values related to the system.
Definition IDisplay.h:13
virtual void initialize()=0
Initialize the display.
virtual ~IDisplay()=default
virtual void update(float channel1Power, float channel2Power)=0
Update the display with all relevant values.