20 lines
268 B
C++
20 lines
268 B
C++
|
|
/*
|
|||
|
|
* ISignal.h
|
|||
|
|
*
|
|||
|
|
* Created on: 2 нояб. 2016 г.
|
|||
|
|
* Author: titov
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#ifndef SOURCE_SYSTEM_ISIGNAL_H_
|
|||
|
|
#define SOURCE_SYSTEM_ISIGNAL_H_
|
|||
|
|
|
|||
|
|
#include "IValue.hpp"
|
|||
|
|
|
|||
|
|
namespace systemic {
|
|||
|
|
|
|||
|
|
typedef IValue<float> ISignal;
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endif /* SOURCE_SYSTEM_ISIGNAL_H_ */
|