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

39 lines
859 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.

/*
* SignalIsFinite.h
*
* Created on: 14 авг. 2020 г.
* Author: user
*/
#ifndef UMLIBRARY_APPLICATION_SCHEMATIC_SIGNALISFINITE_HH_
#define UMLIBRARY_APPLICATION_SCHEMATIC_SIGNALISFINITE_H_
#include "../ISetupStep.hh"
#include "../../systemic/IStatus.hh"
namespace application {
namespace schematic {
struct SignalIsFinite: public ISetupStep {
systemic::ISignal * value = nullptr;
bool input( Environment & env );
void build( Environment & env );
struct Links {
Environment::Id value; //!<Значение подлежащее сравнению.
Environment::Id finite;
};
const Links & links;
SignalIsFinite( const Links & links ) : links(links) {}
};
} /* namespace schematic */
} /* namespace application */
#endif /* UMLIBRARY_APPLICATION_SCHEMATIC_SIGNALISFINITE_HH_ */