totato/src/tox_commands.hpp

21 lines
375 B
C++
Raw Normal View History

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;
class ToxI;
class ToxPrivateI;
void registerToxCommands(
MessageCommandDispatcher& mcd,
ConfigModelI& conf,
Contact3Registry& cr,
RegistryMessageModel& rmm,
ToxI& t,
ToxPrivateI& tp
);