/
makani
/
strongdc
Обзор
Документация
Войти
/
makani
/
strongdc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
client/ClientListener.h
64 строки
2 KB
bigmuscle
updated core
24 июл 2011, 22:28
24 июл 2011, 22:28
172ec44
Код
Авторство
О чём код?
#ifndef CLIENTLISTENER_H_ #define CLIENTLISTENER_H_ #include "typedefs.h" namespace dcpp { class ClientListener { public: virtual ~ClientListener() { } template<int I> struct X { enum { TYPE = I }; }; typedef X<0> Connecting; typedef X<1> Connected; typedef X<3> UserUpdated; typedef X<4> UsersUpdated; typedef X<5> UserRemoved; typedef X<6> Redirect; typedef X<7> Failed; typedef X<8> GetPassword; typedef X<9> HubUpdated; typedef X<11> Message; typedef X<12> StatusMessage; typedef X<13> HubUserCommand; typedef X<14> HubFull; typedef X<15> NickTaken; typedef X<16> SearchFlood; typedef X<17> NmdcSearch; typedef X<18> AdcSearch; typedef X<19> CheatMessage; typedef X<20> HubTopic; typedef X<21> UserReport; enum StatusFlags { FLAG_NORMAL = 0x00, FLAG_IS_SPAM = 0x01 }; virtual void on(Connecting, const Client*) noexcept { } virtual void on(Connected, const Client*) noexcept { } virtual void on(UserUpdated, const Client*, const OnlineUserPtr&) noexcept { } virtual void on(UsersUpdated, const Client*, const OnlineUserList&) noexcept { } virtual void on(UserRemoved, const Client*, const OnlineUserPtr&) noexcept { } virtual void on(Redirect, const Client*, const string&) noexcept { } virtual void on(Failed, const Client*, const string&) noexcept { } virtual void on(GetPassword, const Client*) noexcept { } virtual void on(HubUpdated, const Client*) noexcept { } virtual void on(Message, const Client*, const ChatMessage&) noexcept { } virtual void on(StatusMessage, const Client*, const string&, int = FLAG_NORMAL) noexcept { } virtual void on(HubUserCommand, const Client*, int, int, const string&, const string&) noexcept { } virtual void on(HubFull, const Client*) noexcept { } virtual void on(NickTaken, const Client*) noexcept { } virtual void on(SearchFlood, const Client*, const string&) noexcept { } virtual void on(NmdcSearch, Client*, const string&, int, int64_t, int, const string&, bool) noexcept { } virtual void on(AdcSearch, const Client*, const AdcCommand&, const CID&) noexcept { } virtual void on(CheatMessage, const Client*, const string&) noexcept { } virtual void on(HubTopic, const Client*, const string&) noexcept { } virtual void on(UserReport, const Client*, const Identity&) noexcept { } }; } // namespace dcpp #endif /*CLIENTLISTENER_H_*/