aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/BitWriter.hh
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/qpdf/BitWriter.hh')
-rw-r--r--libqpdf/qpdf/BitWriter.hh5
1 files changed, 4 insertions, 1 deletions
diff --git a/libqpdf/qpdf/BitWriter.hh b/libqpdf/qpdf/BitWriter.hh
index 09d758c7..32dc8e49 100644
--- a/libqpdf/qpdf/BitWriter.hh
+++ b/libqpdf/qpdf/BitWriter.hh
@@ -7,14 +7,17 @@
class Pipeline;
-class DLL_EXPORT BitWriter
+class BitWriter
{
public:
// Write bits to the pipeline. It is the caller's responsibility
// to eventually call finish on the pipeline.
+ DLL_EXPORT
BitWriter(Pipeline* pl);
+ DLL_EXPORT
void writeBits(unsigned long val, int bits);
// Force any partial byte to be written to the pipeline.
+ DLL_EXPORT
void flush();
private: