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

30 lines
604 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.

/*
* SequenceAction.hh
*
* Created on: 7 июл. 2020 г.
* Author: LeonidTitov
*/
#ifndef UMLIBRARY_SCHEMATIC_ACTION_SEQUENCEACTION_HH_
#define UMLIBRARY_SCHEMATIC_ACTION_SEQUENCEACTION_HH_
#include "../../systemic/IFunctor.hh"
namespace schematic { namespace functor {
class SequenceAction : public systemic::IFunctor<void> {
systemic::IFunctor<void> & first;
systemic::IFunctor<void> & second;
public:
SequenceAction( systemic::IFunctor<void> & f, systemic::IFunctor<void> & s );
void operator()();
};
}}
#endif /* UMLIBRARY_SCHEMATIC_ACTION_SEQUENCEACTION_HH_ */