/* * namespace.h * * specifying common used namespace * * by WangLu */ #ifndef NAMESPACE_H__ #define NAMESPACE_H__ using std::hex; using std::dec; using std::string; using std::cout; using std::cerr; using std::endl; using std::make_pair; using boost::filesystem::ifstream; using boost::filesystem::ofstream; using boost::filesystem::path; #endif // NAMESPACE_H__