23 lines
322 B
C++
23 lines
322 B
C++
/*
|
||
* IStatus.h
|
||
*
|
||
* Created on: 29 янв. 2018 г.
|
||
* Author: titov
|
||
*/
|
||
|
||
#ifndef SOURCE_SYSTEM_ISTATUS_H_
|
||
#define SOURCE_SYSTEM_ISTATUS_H_
|
||
|
||
#include "IValue.hpp"
|
||
|
||
namespace systemic {
|
||
|
||
typedef IValue<bool> IStatus;
|
||
|
||
IStatus & getAlwaysTrue();
|
||
IStatus & getAlwaysFalse();
|
||
|
||
}
|
||
|
||
#endif /* SOURCE_SYSTEM_ISTATUS_H_ */
|