removed all ../ entries and made a basic inc path (dependencies are currently broke)
[physics.git] / src / config / keys.h
index 49fe66f..285ecb6 100644 (file)
 #include <map>
 #include <string>
 
-#include "../debug.h"
-
-class comparestrings
-{
-  public:
-    bool operator()
-    (
-        const std::string& a,
-        const std::string& b
-    )
-    {
-        cout << a << endl;
-        cout << b << endl;
-        cout << endl;
-
-        return a.compare(b) < 0;
-    }
-};
+#include "debug.h"
 
 /// ***** Header Methods *****
 namespace key
@@ -51,7 +34,7 @@ namespace key
     extern SDLKey follow;
     extern SDLKey well;
 
-    typedef std::map<std::string, SDLKey*, comparestrings> inputMap;
+    typedef std::map<std::string, SDLKey*> inputMap;
 
     extern inputMap sdlMap;