15 lines
193 B
C++
15 lines
193 B
C++
|
|
/*
|
|||
|
|
* DummyAction.cpp
|
|||
|
|
*
|
|||
|
|
* Created on: 18 <EFBFBD><EFBFBD><EFBFBD>. 2021 <EFBFBD>.
|
|||
|
|
* Author: titov
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#include "DummyAction.hh"
|
|||
|
|
|
|||
|
|
void schematic::action::DummyAction::operator()() {
|
|||
|
|
//nothing;
|
|||
|
|
return;
|
|||
|
|
|
|||
|
|
}
|