MotorControlModuleSDFM_TMS3.../Projects/EFC_Communication/UMLibrary/schematic/ResetSetActionTrigger.hh

30 lines
481 B
C++
Raw Normal View History

2024-06-07 11:12:56 +03:00
/*
* ResetSetActionTrigger.hh
*
* Created on: 4 авг. 2020 г.
* Author: LeonidTitov
*/
#ifndef UMLIBRARY_SCHEMATIC_RESETSETACTIONTRIGGER_HH_
#define UMLIBRARY_SCHEMATIC_RESETSETACTIONTRIGGER_HH_
namespace schematic {
class ResetSetActionTrigger {
public:
ResetSetActionTrigger( bool init_value );
void reset();
void set();
const bool & trigger() const;
private:
bool value;
};
}
#endif /* UMLIBRARY_SCHEMATIC_RESETSETACTIONTRIGGER_HH_ */