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

25 lines
365 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__
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;
2012-08-14 09:50:16 +00:00
using boost::format;
2012-08-14 09:13:29 +00:00
#endif // NAMESPACE_H__