Working on generating string literals for inclusion in generated code.

This commit is contained in:
eelke 2018-09-21 11:41:20 +02:00
parent 0c3bb27e58
commit 092ed67d5e
8 changed files with 218 additions and 3 deletions

View file

@ -0,0 +1,10 @@
#include "StringLiteralRules.h"
#include <QTextStream>
void StringLiteralRules::OutputString(QTextStream &stream, QString string_literal)
{
stream << m_stringStart;
stream << m_stringEnd;
}