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

28 lines
467 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.

/*
* DummyAction.hh
*
* Created on: 18 мар. 2021 г.
* Author: titov
*/
#ifndef UMLIBRARY_SCHEMATIC_ACTION_DUMMYACTION_HH_
#define UMLIBRARY_SCHEMATIC_ACTION_DUMMYACTION_HH_
#include "../../systemic/IFunctor.hh"
namespace schematic { namespace action {
struct DummyAction : public systemic::IFunctor<void> {
typedef systemic::IFunctor<void> ActionType;
void operator()();
};
}}
#endif /* UMLIBRARY_SCHEMATIC_ACTION_DUMMYACTION_HH_ */