diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-05 17:30:36 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-06 01:18:57 +0300 |
commit | 487d3be4cc8761e5697d4fb95d85e9da8dcaa42e (patch) | |
tree | 51ad4b1a6e89fd10a5a30a951879862494264c53 /src/net/eathena/serverfeatures.h | |
parent | e4aea077d98d37ddec91c76ca7ad359e321a7661 (diff) | |
download | plus-487d3be4cc8761e5697d4fb95d85e9da8dcaa42e.tar.gz plus-487d3be4cc8761e5697d4fb95d85e9da8dcaa42e.tar.bz2 plus-487d3be4cc8761e5697d4fb95d85e9da8dcaa42e.tar.xz plus-487d3be4cc8761e5697d4fb95d85e9da8dcaa42e.zip |
Add serverfeatures class for check is server support one or another features.
Diffstat (limited to 'src/net/eathena/serverfeatures.h')
-rw-r--r-- | src/net/eathena/serverfeatures.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/net/eathena/serverfeatures.h b/src/net/eathena/serverfeatures.h new file mode 100644 index 000000000..79febd773 --- /dev/null +++ b/src/net/eathena/serverfeatures.h @@ -0,0 +1,38 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011-2014 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef NET_EATHENA_SERVERFEATURES_H +#define NET_EATHENA_SERVERFEATURES_H + +#include "net/serverfeatures.h" + +#include "localconsts.h" + +namespace EAthena +{ +class ServerFeatures final : public Net::ServerFeatures +{ + public: + bool haveOnlineList() const override final; +}; + +} // namespace Net + +#endif // NET_EATHENA_SERVERFEATURES_H |