summaryrefslogtreecommitdiff
path: root/hwpfilter/source/hiodev.h
diff options
context:
space:
mode:
Diffstat (limited to 'hwpfilter/source/hiodev.h')
-rw-r--r--hwpfilter/source/hiodev.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/hwpfilter/source/hiodev.h b/hwpfilter/source/hiodev.h
index af49703c3482..e47bd8b2d0f0 100644
--- a/hwpfilter/source/hiodev.h
+++ b/hwpfilter/source/hiodev.h
@@ -47,7 +47,7 @@ class DLLEXPORT HIODev
virtual bool open() = 0;
virtual void flush() = 0;
- virtual int state() const = 0;
+ virtual bool state() const = 0;
/* gzip routine wrapper */
virtual bool setCompressed( bool ) = 0;
@@ -92,7 +92,7 @@ class HStreamIODev final: public HIODev
/**
* Not implemented.
*/
- virtual int state() const override;
+ virtual bool state() const override;
/**
* Set whether the stream is compressed or not
*/
@@ -144,7 +144,7 @@ class HMemIODev final: public HIODev
virtual bool open() override;
virtual void flush() override;
- virtual int state() const override;
+ virtual bool state() const override;
/* gzip routine wrapper */
virtual bool setCompressed( bool ) override;
using HIODev::read1b;