8 lines
111 B
C++
8 lines
111 B
C++
#include "./Command.h"
|
|
|
|
void
|
|
doNothing(Args& args, Print& printer)
|
|
{}
|
|
|
|
Command::Command() : func(doNothing) {}
|