mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-16 13:58:22 +00:00
Remove 'using namespaces std' fixes #61
This commit is contained in:
+1
-3
@@ -29,8 +29,6 @@
|
||||
class HttpdForm;
|
||||
class EQWHTTPHandler;
|
||||
|
||||
using namespace std;
|
||||
|
||||
class HTTPRequest {
|
||||
public:
|
||||
HTTPRequest(EQWHTTPHandler *h, HttpdForm *form);
|
||||
@@ -44,7 +42,7 @@ public:
|
||||
//returns a database-safe string
|
||||
Const_char * getEscaped(Const_char *name, Const_char *default_value = "") const;
|
||||
|
||||
map<string,string> get_all() const;
|
||||
std::map<std::string,std::string> get_all() const;
|
||||
|
||||
void redirect(Const_char *URL);
|
||||
void SetResponseCode(Const_char *code);
|
||||
|
||||
Reference in New Issue
Block a user