21 lines
377 B
C++
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
|
|
);
|
|
|