]> git.llucax.com Git - software/bife/bife++.git/blobdiff - hash.h
Lowercased XML tags.
[software/bife/bife++.git] / hash.h
diff --git a/hash.h b/hash.h
index bf69ab2b7d96e1067b9f89e8f5d00815a58ed4bd..d825bdc9f833a66f72b7b33f9d2001373d645ae7 100644 (file)
--- a/hash.h
+++ b/hash.h
@@ -1,14 +1,14 @@
 // vim: set expandtab tabstop=4 shiftwidth=4:
 
-#ifndef _BIFE_HASH_H_
-#define _BIFE_HASH_H_
+#ifndef BIFE_HASH_H
+#define BIFE_HASH_H
 
 #include <string>
 #include <map>
 
-using namespace std;
-
-/// String hash similar to high level languages (like perl, python or php).
-typedef map<string, string> Hash;
+namespace bife {
+    /// String hash similar to high level languages (like perl, python or php).
+    typedef std::map<std::string, std::string> Hash;
+}
 
 #endif