summaryrefslogtreecommitdiff
path: root/hwpfilter/source/hstream.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'hwpfilter/source/hstream.hxx')
-rw-r--r--hwpfilter/source/hstream.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/hwpfilter/source/hstream.hxx b/hwpfilter/source/hstream.hxx
index 426d39650939..4374b92674e3 100644
--- a/hwpfilter/source/hstream.hxx
+++ b/hwpfilter/source/hstream.hxx
@@ -20,6 +20,8 @@
#ifndef INCLUDED_HWPFILTER_SOURCE_HSTREAM_H
#define INCLUDED_HWPFILTER_SOURCE_HSTREAM_H
+#include <vector>
+
typedef unsigned char byte;
/**
* Stream class
@@ -28,7 +30,6 @@ class HStream
{
public:
HStream();
- virtual ~HStream();
/**
*
@@ -49,7 +50,7 @@ class HStream
private:
int size;
- byte *seq;
+ std::vector<byte> seq;
int pos;
};
#endif