20 lines
383 B
C++
20 lines
383 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_ */
|