summaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/auto_job_json_decl.hh
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2022-01-30 14:04:45 +0100
committerJay Berkenbilt <ejb@ql.org>2022-01-31 21:57:45 +0100
commite01bbccb40d4714f8fd1551d7f7cca694d607091 (patch)
tree59b423e39c1d7807bf585859e08c1cf9b514df17 /libqpdf/qpdf/auto_job_json_decl.hh
parentce3406e93f0de0946d2abed6179579caf1433d4e (diff)
downloadqpdf-e01bbccb40d4714f8fd1551d7f7cca694d607091.tar.zst
QPDFJob: incorporate change to JSONHandler for dict start function
Diffstat (limited to 'libqpdf/qpdf/auto_job_json_decl.hh')
-rw-r--r--libqpdf/qpdf/auto_job_json_decl.hh43
1 files changed, 21 insertions, 22 deletions
diff --git a/libqpdf/qpdf/auto_job_json_decl.hh b/libqpdf/qpdf/auto_job_json_decl.hh
index 817eff7c..d8bf1ef4 100644
--- a/libqpdf/qpdf/auto_job_json_decl.hh
+++ b/libqpdf/qpdf/auto_job_json_decl.hh
@@ -3,53 +3,52 @@
// Edits will be automatically overwritten if the build is
// run in maintainer mode.
//
-void beginInput();
+void beginInput(JSON);
void endInput();
-void setupInputFileName(std::string const&);
+void setupInputFilename(std::string const&);
void setupInputPassword(std::string const&);
void setupInputEmpty(std::string const&);
-void beginOutput();
+void beginOutput(JSON);
void endOutput();
-void setupOutputFileName(std::string const&);
+void setupOutputFilename(std::string const&);
void setupOutputReplaceInput(std::string const&);
-void beginOutputOptions();
+void beginOutputOptions(JSON);
void endOutputOptions();
-void beginOutputOptionsEncrypt();
+void beginOutputOptionsEncrypt(JSON);
void endOutputOptionsEncrypt();
-void setupOutputOptionsEncryptKeyLength(std::string const&);
void setupOutputOptionsEncryptUserPassword(std::string const&);
void setupOutputOptionsEncryptOwnerPassword(std::string const&);
-void beginOutputOptionsEncrypt40Bit();
-void endOutputOptionsEncrypt40Bit();
-void beginOutputOptionsEncrypt128Bit();
-void endOutputOptionsEncrypt128Bit();
-void beginOutputOptionsEncrypt256Bit();
-void endOutputOptionsEncrypt256Bit();
-void beginOptions();
+void beginOutputOptionsEncrypt40bit(JSON);
+void endOutputOptionsEncrypt40bit();
+void beginOutputOptionsEncrypt128bit(JSON);
+void endOutputOptionsEncrypt128bit();
+void beginOutputOptionsEncrypt256bit(JSON);
+void endOutputOptionsEncrypt256bit();
+void beginOptions(JSON);
void endOptions();
-void beginInspect();
+void beginInspect(JSON);
void endInspect();
-void beginTransform();
+void beginTransform(JSON);
void endTransform();
-void beginModify();
+void beginModify(JSON);
void endModify();
-void beginModifyAddAttachment();
+void beginModifyAddAttachment(JSON);
void endModifyAddAttachment();
void setupModifyAddAttachmentPath(std::string const&);
-void beginModifyCopyAttachmentsFrom();
+void beginModifyCopyAttachmentsFrom(JSON);
void endModifyCopyAttachmentsFrom();
void setupModifyCopyAttachmentsFromPath(std::string const&);
void setupModifyCopyAttachmentsFromPassword(std::string const&);
-void beginModifyPages();
+void beginModifyPages(JSON);
void endModifyPages();
void setupModifyPagesFile(std::string const&);
void setupModifyPagesPassword(std::string const&);
void setupModifyPagesRange(std::string const&);
-void beginModifyOverlay();
+void beginModifyOverlay(JSON);
void endModifyOverlay();
void setupModifyOverlayFile(std::string const&);
void setupModifyOverlayPassword(std::string const&);
-void beginModifyUnderlay();
+void beginModifyUnderlay(JSON);
void endModifyUnderlay();
void setupModifyUnderlayFile(std::string const&);
void setupModifyUnderlayPassword(std::string const&);