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