1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-09-17 21:16:03 +00:00
pdf2htmlEX/src/util/namespace.h

22 lines
282 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::endl;
using std::make_pair;
2012-09-09 16:21:46 +00:00
using std::ifstream;
using std::ofstream;
2012-08-14 09:13:29 +00:00
#endif // NAMESPACE_H__