MotorControlModuleSDFM_TMS3.../Projects/EFC_Communication/UMLibrary/schematic/ResetSetActionTrigger.hh
2024-06-07 11:12:56 +03:00

30 lines
481 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* 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_ */