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

28 lines
350 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;
double h_eps, v_eps;
2012-08-09 14:47:22 +00:00
int process_nontext;
2012-08-04 18:03:53 +00:00
};
#endif //PARAM_h__