39 lines
828 B
C++
39 lines
828 B
C++
/*
|
|
* 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_ */
|