aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/qpdf/Pipeline.hh18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/qpdf/Pipeline.hh b/include/qpdf/Pipeline.hh
index c3eb787e..0e0fb844 100644
--- a/include/qpdf/Pipeline.hh
+++ b/include/qpdf/Pipeline.hh
@@ -86,6 +86,24 @@ class QPDF_DLL_CLASS Pipeline
Pipeline& operator<<(char const* cstr);
QPDF_DLL
Pipeline& operator<<(std::string const&);
+ // Calls QUtil::int_to_string
+ QPDF_DLL
+ Pipeline& operator<<(short);
+ QPDF_DLL
+ Pipeline& operator<<(int);
+ QPDF_DLL
+ Pipeline& operator<<(long);
+ QPDF_DLL
+ Pipeline& operator<<(long long);
+ // Calls QUtil::uint_to_string
+ QPDF_DLL
+ Pipeline& operator<<(unsigned short);
+ QPDF_DLL
+ Pipeline& operator<<(unsigned int);
+ QPDF_DLL
+ Pipeline& operator<<(unsigned long);
+ QPDF_DLL
+ Pipeline& operator<<(unsigned long long);
// Overloaded write to reduce casting
QPDF_DLL