Dependents: SEL_Device_Monitor
counterMinMax.h
- Committer:
- masterkookus
- Date:
- 2019-10-02
- Revision:
- 0:162461305b81
File content as of revision 0:162461305b81:
#ifndef MKCNTMM_H #define MKCNTMM_H class counterMinMax { int minLimVal; int maxLimVal; bool maxLim; bool minLim; bool maxSet; bool minSet; int maxVal; int minVal; int nomVal; public: counterMinMax(int, bool, int, bool, int); void putVal(int); int getMin(void); int getMax(void); void resetNum(void); }; #endif