Chatterino
IrcCommands.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <QString>
4 #include "common/Outcome.hpp"
5 
6 namespace chatterino {
7 
8 class IrcChannel;
9 
10 Outcome invokeIrcCommand(const QString &command, const QString &params,
11  IrcChannel &channel);
12 
13 } // namespace chatterino
Definition: Application.cpp:48
Outcome invokeIrcCommand(const QString &commandName, const QString &allParams, IrcChannel &channel)
Definition: IrcCommands.cpp:11