Files
totato/src/tox_commands.hpp
2025-03-10 20:40:25 +01:00

21 lines
365 B
C++

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