blob: fbedb288b019b6e31e11ec2a49b1eceb46a151bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
  |