X-Git-Url: https://git.llucax.com/software/bife/bife%20%20.git/blobdiff_plain/3de3fcc595200e235aadf399c64160b0bd0da7cc..06ab47b05cf33090eb8c8fd4cf55b16a959579a5:/hash.h/software/bife/bife++.git/blobdiff_plain/3de3fcc595200e235aadf399c64160b0bd0da7cc..06ab47b05cf33090eb8c8fd4cf55b16a959579a5:/hash.h diff --git a/hash.h b/hash.h index bf69ab2..d825bdc 100644 --- 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 #include -using namespace std; - -/// String hash similar to high level languages (like perl, python or php). -typedef map Hash; +namespace bife { + /// String hash similar to high level languages (like perl, python or php). + typedef std::map Hash; +} #endif