actions: Separate data from action string

Modules now no longer need to manually parse the action string and
extract data from it.
This commit is contained in:
patrick96 2020-05-24 00:36:16 +02:00 committed by Patrick Ziegler
parent 8acedeef87
commit bc1b86c584
33 changed files with 124 additions and 142 deletions
include/modules

View file

@ -36,7 +36,7 @@ namespace modules {
string input_handler_name() const { \
return ""; \
} \
bool input(string&&) { \
bool input(string&&, string&&) { \
return false; \
} \
}