This repository has been archived on 2021-06-27. You can view files and clone it, but cannot push or open issues or pull requests.
modetw/src/file_t.cpp

14 lines
220 B
C++

#include "../include/file_t.hpp"
void
file_t::file_t(const char* filename)
{
__doc = xmlParseFile(filename);
if (__doc == NULL) {
fprintf(stderr, "%s not parsed successfully. \n", filename);
}
return;
}