ZotBins Core
Loading...
Searching...
No Matches
IWeight.hpp
Go to the documentation of this file.
1
8
9#ifndef IWEIGHT_HPP
10#define IWEIGHT_HPP
11
12#include <cstdint>
13
14namespace Weight
15{
21 class IWeight
22 {
23 public:
29 virtual int32_t getWeight() = 0;
30 };
31}
32
33#endif
Interface (abstract) class for mock and real hardware weight sensor. Used to inherit the getWeight me...
Definition IWeight.hpp:22
virtual int32_t getWeight()=0
Returns the weight of the sensor.