28 lines
463 B
C++
28 lines
463 B
C++
/*
|
|
* 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_ */
|