The complete source code of IdealIRC
http://www.idealirc.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1014 B
32 lines
1014 B
/*
|
|
* IdealIRC - Internet Relay Chat client
|
|
* Copyright (C) 2021 Tom-Andre Barstad.
|
|
* This software is licensed under the Software Attribution License.
|
|
* See LICENSE for more information.
|
|
*/
|
|
|
|
#ifndef ICOMMAND_COMMANDS_H
|
|
#define ICOMMAND_COMMANDS_H
|
|
|
|
/*
|
|
* When adding new commands, consider adding it to ICommand/AutoComplete.cpp as well.
|
|
*/
|
|
|
|
namespace Command::Internal {
|
|
constexpr auto* ACTION = "ACTION";
|
|
constexpr auto* CTCP = "CTCP";
|
|
constexpr auto* DCC = "DCC";
|
|
constexpr auto* CTCPREPLY = "CTCPREPLY";
|
|
constexpr auto* ME = "ME";
|
|
constexpr auto* ECHO = "ECHO";
|
|
constexpr auto* QUERY = "QUERY";
|
|
constexpr auto* MUTERESP = "MUTERESP";
|
|
constexpr auto* UNMUTERESP = "UNMUTERESP";
|
|
constexpr auto* CLEAR = "CLEAR";
|
|
constexpr auto* MSG = "MSG";
|
|
constexpr auto* QUOTE = "QUOTE";
|
|
constexpr auto* RAW = "RAW";
|
|
constexpr auto* SERVER = "SERVER";
|
|
}
|
|
|
|
#endif // ICOMMAND_COMMANDS_H
|
|
|