summaryrefslogtreecommitdiff
path: root/src/file.cpp
blob: 845c1014202b98042fd7c031aa93bf100bd1a6b7 (plain)
1
2
3
4
5
6
7
8
9
#include "file.hpp"


TexoFileExporter::TexoFileExporter(FILE *file): file(file)  {}

void TexoFileExporter::Put(const char c)
{
    fputc(c, file);
}