20 lines
383 B
C++
20 lines
383 B
C++
|
|
/*
|
|||
|
|
* StatusGetAction.hh
|
|||
|
|
*
|
|||
|
|
* Created on: 23 <EFBFBD><EFBFBD><EFBFBD>. 2023 <EFBFBD>.
|
|||
|
|
* 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_ */
|