summaryrefslogtreecommitdiff
path: root/src/file.hpp
blob: 0e189d6b7b7c2d636c59e671f2c5697800d00926 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef XIFT_INCLUDED_FILE
#define XIFT_INCLUDED_FILE

#include "exporter.hpp"
#include <stdio.h>


class XiftFile: public XiftExporter {
public:
    XiftFile(FILE *file);

    void Put(char c);
    void Put(const char *str);

private:
    FILE *file;
};


#endif