summaryrefslogtreecommitdiff
path: root/src/str.hpp
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2020-01-31 17:16:27 +0300
committerAleksey Veresov <aleksey@veresov.pro>2020-01-31 17:16:27 +0300
commit0be032c6998e712dc2c9f2ed97c3491d89eb05af (patch)
treef762d884147d2f0a9a115edd0b5e0de554a3ec1b /src/str.hpp
downloadxift-0be032c6998e712dc2c9f2ed97c3491d89eb05af.tar
xift-0be032c6998e712dc2c9f2ed97c3491d89eb05af.tar.xz
xift-0be032c6998e712dc2c9f2ed97c3491d89eb05af.zip
[xift] Almost done.
Diffstat (limited to 'src/str.hpp')
-rw-r--r--src/str.hpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/str.hpp b/src/str.hpp
new file mode 100644
index 0000000..fbedb28
--- /dev/null
+++ b/src/str.hpp
@@ -0,0 +1,21 @@
+#ifndef XIFT_INCLUDED_STRING
+#define XIFT_INCLUDED_STRING
+
+#include "exporter.hpp"
+
+
+class XiftString: public XiftExporter {
+public:
+ XiftString(char *&str);
+
+ void Put(char c);
+ void Put(const char *addon);
+
+private:
+ char *&str;
+ int len;
+ int size;
+};
+
+
+#endif