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

38 lines
525 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;
std::string dest_dir, tmp_dir;
int first_page, last_page;
double zoom;
double font_size_multiplier;
double h_dpi, v_dpi;
double h_eps, v_eps;
int process_nontext;
int single_html;
int always_apply_tounicode;
int debug;
int clean_tmp;
};
#endif //PARAM_h__