1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-08 19:00:33 +00:00
pdf2htmlEX/src/Param.h
2012-08-12 15:11:17 +08:00

31 lines
393 B
C++

/*
* 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;
double h_dpi2, v_dpi2;
double h_eps, v_eps;
int process_nontext;
int debug;
};
#endif //PARAM_h__