23 lines
318 B
C++
23 lines
318 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_ */
|