1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-10-06 03:51:40 +00:00
pdf2htmlEX/src/Param.h

36 lines
460 B
C
Raw Normal View History

2012-08-04 18:03:53 +00:00
/*
* Parameters
*
* Wang Lu
* 2012.08.03
*/
#ifndef PARAM_H__
#define PARAM_H__
#include <string>
struct Param
{
std::string owner_password, user_password;
std::string input_filename, output_filename;
2012-08-14 09:50:16 +00:00
2012-08-14 10:12:58 +00:00
std::string dest_dir, tmp_dir;
2012-08-14 09:50:16 +00:00
2012-08-04 18:03:53 +00:00
int first_page, last_page;
2012-08-15 13:26:13 +00:00
double zoom;
2012-08-04 18:03:53 +00:00
double h_dpi, v_dpi;
double h_eps, v_eps;
2012-08-09 14:47:22 +00:00
int process_nontext;
2012-08-15 07:43:49 +00:00
int single_html;
2012-08-12 06:04:45 +00:00
int debug;
2012-08-15 07:43:49 +00:00
int clean_tmp;
2012-08-04 18:03:53 +00:00
};
#endif //PARAM_h__