mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-20 01:18:21 +00:00
Remove 'using namespaces std' fixes #61
This commit is contained in:
+3
-3
@@ -22,7 +22,7 @@
|
||||
|
||||
class WorldConfig : public EQEmuConfig {
|
||||
public:
|
||||
virtual string GetByName(const string &var_name) const;
|
||||
virtual std::string GetByName(const std::string &var_name) const;
|
||||
|
||||
bool UpdateStats;
|
||||
bool LoginDisabled;
|
||||
@@ -65,8 +65,8 @@ public:
|
||||
static void DisableLoginserver() { if (_world_config) _world_config->LoginDisabled=true; }
|
||||
static void EnableLoginserver() { if (_world_config) _world_config->LoginDisabled=false; }
|
||||
|
||||
static void SetWorldAddress(string addr) { if (_world_config) _world_config->WorldAddress=addr; }
|
||||
static void SetLocalAddress(string addr) { if (_world_config) _world_config->LocalAddress=addr; }
|
||||
static void SetWorldAddress(std::string addr) { if (_world_config) _world_config->WorldAddress=addr; }
|
||||
static void SetLocalAddress(std::string addr) { if (_world_config) _world_config->LocalAddress=addr; }
|
||||
|
||||
void Dump() const;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user