Remove 'using namespaces std' fixes #61

This commit is contained in:
Michael Cook
2013-05-22 16:17:19 -04:00
parent 312100e1c6
commit 0fdfe025cb
190 changed files with 1801 additions and 2004 deletions
+3 -3
View File
@@ -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;
};