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