aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sisfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sisfile.h')
-rw-r--r--lib/sisfile.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/sisfile.h b/lib/sisfile.h
index 2bfcea5..d74cc1c 100644
--- a/lib/sisfile.h
+++ b/lib/sisfile.h
@@ -39,6 +39,10 @@ class SISFile
{
public:
+ SISFile();
+
+ virtual ~SISFile();
+
/**
* Compare uid and version number of this file, with another.
*
@@ -70,6 +74,11 @@ public:
*/
uint8_t* getName();
+ void ownBuffer()
+ {
+ m_ownBuffer = true;
+ }
+
/**
* Is this the same application?
*/
@@ -99,6 +108,10 @@ private:
SISComponentNameRecord m_componentRecord;
+ bool m_ownBuffer;
+
+ uint8_t* m_buf;
+
};
#endif