aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2022-05-04 18:02:39 +0200
committerJay Berkenbilt <ejb@ql.org>2022-05-04 18:07:11 +0200
commite5f3910c3ee1f6b779455fb1516ab3c985383d8e (patch)
tree54ae7548722e072bce4dbcb3fc627f85714d1836 /include
parente259635986a799f0b72b6040aba8c1ed870e552a (diff)
downloadqpdf-e5f3910c3ee1f6b779455fb1516ab3c985383d8e.tar.zst
Add new FileInputSource constructors
Diffstat (limited to 'include')
-rw-r--r--include/qpdf/FileInputSource.hh4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/qpdf/FileInputSource.hh b/include/qpdf/FileInputSource.hh
index 1b4f5d6a..f1e7edf4 100644
--- a/include/qpdf/FileInputSource.hh
+++ b/include/qpdf/FileInputSource.hh
@@ -30,6 +30,10 @@ class QPDF_DLL_CLASS FileInputSource: public InputSource
QPDF_DLL
FileInputSource();
QPDF_DLL
+ FileInputSource(char const* filename);
+ QPDF_DLL
+ FileInputSource(char const* description, FILE* filep, bool close_file);
+ QPDF_DLL
void setFilename(char const* filename);
QPDF_DLL
void setFile(char const* description, FILE* filep, bool close_file);