23 lines
318 B
C++
23 lines
318 B
C++
|
|
/*
|
|||
|
|
* IStatus.h
|
|||
|
|
*
|
|||
|
|
* Created on: 29 <EFBFBD><EFBFBD><EFBFBD>. 2018 <EFBFBD>.
|
|||
|
|
* 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_ */
|