jtlc/nodes/CStatementNode.cc
josh 55b80e8f09 started filling in new node types, creating them in parser
git-svn-id: svn://anubis/jtlc/trunk@13 f5bc74b8-7b62-4e90-9214-7121d538519f
2010-01-13 20:48:37 +00:00

13 lines
214 B
C++

#include <stdio.h>
#include <string>
#include "Node.h"
#include "util/refptr.h"
using namespace std;
void CStatementNode::process(FILE * out)
{
fprintf(out, "%s", m_string.c_str());
fprintf(out, "\n");
}