X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;ds=sidebyside;f=src%2Fban.h;h=3e2ab7a877ec989882f5d5e0ec4099b530f45dbb;hb=5506e97ed897dde2d4820fe1b021a4622bae03b3;hp=8132c3a38552002eab5bd3232e279d50dc969f25;hpb=497ff1ecd64c8908f988e15ca879824f2781e3fd;p=dragonfireclient.git diff --git a/src/ban.h b/src/ban.h index 8132c3a38..3e2ab7a87 100644 --- a/src/ban.h +++ b/src/ban.h @@ -1,6 +1,6 @@ /* Minetest -Copyright (C) 2011 celeron55, Perttu Ahola +Copyright (C) 2013 celeron55, Perttu Ahola This program is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by @@ -17,19 +17,19 @@ with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#ifndef BAN_HEADER -#define BAN_HEADER +#pragma once +#include "util/string.h" +#include "threading/thread.h" +#include "exceptions.h" #include #include -#include -#include -#include "exceptions.h" +#include class BanManager { public: - BanManager(const std::string &bannfilepath); + BanManager(const std::string &banfilepath); ~BanManager(); void load(); void save(); @@ -40,12 +40,10 @@ class BanManager void add(const std::string &ip, const std::string &name); void remove(const std::string &ip_or_name); bool isModified(); -private: - JMutex m_mutex; - std::string m_banfilepath; - std::map m_ips; - bool m_modified; +private: + std::mutex m_mutex; + std::string m_banfilepath = ""; + StringMap m_ips; + bool m_modified = false; }; - -#endif