2023-12-15 01:59:19 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <solanaceae/contact/contact_model3.hpp>
|
|
|
|
#include <solanaceae/message3/registry_message_model.hpp>
|
|
|
|
|
|
|
|
// fwd
|
|
|
|
class MessageCommandDispatcher;
|
|
|
|
struct ConfigModelI;
|
|
|
|
|
|
|
|
void registerFunCommands(
|
|
|
|
MessageCommandDispatcher& mcd,
|
|
|
|
ConfigModelI& conf,
|
|
|
|
Contact3Registry& cr,
|
2024-10-06 11:51:02 +02:00
|
|
|
RegistryMessageModelI& rmm
|
2023-12-15 01:59:19 +01:00
|
|
|
);
|
|
|
|
|