1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-10-06 12:01:39 +00:00
pdf2htmlEX/src/Param.h

31 lines
393 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;
int first_page, last_page;
double h_dpi, v_dpi;
2012-08-12 06:56:24 +00:00
double h_dpi2, v_dpi2;
2012-08-04 18:03:53 +00:00
double h_eps, v_eps;
2012-08-09 14:47:22 +00:00
int process_nontext;
2012-08-12 06:04:45 +00:00
int debug;
2012-08-04 18:03:53 +00:00
};
#endif //PARAM_h__