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