39 lines
828 B
C++
39 lines
828 B
C++
|
|
/*
|
|||
|
|
* SignalIsFinite.h
|
|||
|
|
*
|
|||
|
|
* Created on: 14 <EFBFBD><EFBFBD><EFBFBD>. 2020 <EFBFBD>.
|
|||
|
|
* 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; //!<<3C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.
|
|||
|
|
Environment::Id finite;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
const Links & links;
|
|||
|
|
|
|||
|
|
SignalIsFinite( const Links & links ) : links(links) {}
|
|||
|
|
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} /* namespace schematic */
|
|||
|
|
} /* namespace application */
|
|||
|
|
|
|||
|
|
#endif /* UMLIBRARY_APPLICATION_SCHEMATIC_SIGNALISFINITE_HH_ */
|