2023-12-05 10:41:23 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <solanaceae/contact/contact_model3.hpp>
|
|
|
|
#include <solanaceae/message3/registry_message_model.hpp>
|
|
|
|
|
|
|
|
// fwd
|
|
|
|
class MessageCommandDispatcher;
|
|
|
|
struct ConfigModelI;
|
2024-05-28 09:43:22 +02:00
|
|
|
struct ToxI;
|
|
|
|
struct ToxPrivateI;
|
2023-12-05 10:41:23 +01:00
|
|
|
|
|
|
|
void registerToxCommands(
|
|
|
|
MessageCommandDispatcher& mcd,
|
|
|
|
ConfigModelI& conf,
|
|
|
|
Contact3Registry& cr,
|
2024-10-06 11:51:02 +02:00
|
|
|
RegistryMessageModelI& rmm,
|
2023-12-05 10:41:23 +01:00
|
|
|
ToxI& t,
|
|
|
|
ToxPrivateI& tp
|
|
|
|
);
|
|
|
|
|