1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-05 17:48:38 +00:00
pdf2htmlEX/src/Consts.h

28 lines
464 B
C
Raw Normal View History

2012-08-07 01:59:10 +00:00
/*
* Constants
*
* by WangLu
* 2012.08.07
*/
#ifndef CONSTS_H__
#define CONSTS_H__
2012-08-14 09:13:29 +00:00
2012-08-07 01:59:10 +00:00
#include <string>
#include <map>
2012-08-10 13:30:41 +00:00
extern const double EPS;
2012-08-07 01:59:10 +00:00
2012-08-10 13:41:24 +00:00
extern const std::string HTML_HEAD;
extern const std::string HTML_TAIL;
extern const std::string TMP_DIR;
2012-08-07 01:59:10 +00:00
2012-08-10 13:30:41 +00:00
extern const std::map<std::string, std::string> BASE_14_FONT_CSS_FONT_MAP;
2012-08-07 01:59:10 +00:00
2012-08-10 13:30:41 +00:00
extern const double id_matrix[6];
2012-08-07 01:59:10 +00:00
2012-08-10 13:30:41 +00:00
extern const std::map<std::string, std::string> GB_ENCODED_FONT_NAME_MAP;
2012-08-07 01:59:10 +00:00
#endif //CONSTS_H__