15 lines
197 B
C++
15 lines
197 B
C++
/*
|
||
* DummyAction.cpp
|
||
*
|
||
* Created on: 18 мар. 2021 г.
|
||
* Author: titov
|
||
*/
|
||
|
||
#include "DummyAction.hh"
|
||
|
||
void schematic::action::DummyAction::operator()() {
|
||
//nothing;
|
||
return;
|
||
|
||
}
|