You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
293 B
C++
18 lines
293 B
C++
4 weeks ago
|
/*
|
||
|
* WeinbusBufferCoil.cpp
|
||
|
*
|
||
|
* Author: Aleksey Gerasimenko
|
||
|
* gerasimenko.aleksey.n@gmail.com
|
||
|
*/
|
||
|
|
||
|
#include "WEINBUS/WeinbusBufferCoil.h"
|
||
|
|
||
|
namespace WEINBUS
|
||
|
{
|
||
|
//CONSTRUCTOR
|
||
|
WeinbusBufferCoil::WeinbusBufferCoil():
|
||
|
WeinbusBuffer()
|
||
|
{}//CONSTRUCTOR
|
||
|
|
||
|
} /* namespace WEINBUS */
|