1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-09-19 05:40:07 +00:00
pdf2htmlEX/src/HTMLRenderer/namespace.h

26 lines
376 B
C
Raw Normal View History

2012-08-14 09:13:29 +00:00
/*
* namespace.h
*
* specifying common used namespace
*
* by WangLu
*/
#ifndef NAMESPACE_H__
#define NAMESPACE_H__
2012-09-07 16:38:41 +00:00
using std::hex;
using std::dec;
2012-08-14 09:13:29 +00:00
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__