totato/src/tox_commands.hpp
2024-05-28 09:43:22 +02:00

21 lines
377 B
C++

#pragma once
#include <solanaceae/contact/contact_model3.hpp>
#include <solanaceae/message3/registry_message_model.hpp>
// fwd
class MessageCommandDispatcher;
struct ConfigModelI;
struct ToxI;
struct ToxPrivateI;
void registerToxCommands(
MessageCommandDispatcher& mcd,
ConfigModelI& conf,
Contact3Registry& cr,
RegistryMessageModel& rmm,
ToxI& t,
ToxPrivateI& tp
);