20 lines
387 B
C++
20 lines
387 B
C++
/*
|
||
* StatusGetAction.hh
|
||
*
|
||
* Created on: 23 июн. 2023 г.
|
||
* Author: titov
|
||
*/
|
||
|
||
#ifndef UMLIBRARY_SCHEMATIC_ACTION_STATUSGETACTION_HH_
|
||
#define UMLIBRARY_SCHEMATIC_ACTION_STATUSGETACTION_HH_
|
||
|
||
#include "ValueGetAction.hpp"
|
||
|
||
namespace schematic { namespace functor {
|
||
|
||
typedef ValueGetAction<bool> StatusGetAction;
|
||
|
||
}}
|
||
|
||
#endif /* UMLIBRARY_SCHEMATIC_ACTION_STATUSGETACTION_HH_ */
|