aboutsummaryrefslogtreecommitdiffstats
path: root/include/qpdf/auto_job_c_uo.hh
AgeCommit message (Collapse)Author
2022-02-26generate_auto_job: protect generated files from formattingJay Berkenbilt
2022-02-01Make QPDFArgParser accept const argvJay Berkenbilt
This makes it much more convention to use the initializeFromArgv functions since you can use string literals.
2022-01-30QPDFJob: use pointers instead of references for ConfigJay Berkenbilt
Why? The main methods that create them return smart pointers so that users can initialize them when needed, which you can't do with references. Returning pointers instead of references makes for a more uniform interface.
2022-01-30QPDFJob: use manually named end functions for Config classesJay Berkenbilt
Use named functions rather than just end() for clarity.
2022-01-30QPDFJob: convert under/overlay and rotateJay Berkenbilt