18 lines
238 B
C++
18 lines
238 B
C++
|
|
#include "Parser.h"
|
|
#include <string>
|
|
#include <fstream>
|
|
|
|
using namespace std;
|
|
|
|
Parser::Parser()
|
|
{
|
|
}
|
|
|
|
void Parser::write(const string & fname)
|
|
{
|
|
ofstream ofs(fname.c_str());
|
|
ofs << "Content goes here" << endl;
|
|
ofs.close();
|
|
}
|