13 lines
214 B
C++
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");
|
|
}
|