Working on generating string literals for inclusion in generated code.
This commit is contained in:
parent
0c3bb27e58
commit
092ed67d5e
8 changed files with 218 additions and 3 deletions
10
pglablib/codebuilder/StringLiteralRules.cpp
Normal file
10
pglablib/codebuilder/StringLiteralRules.cpp
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#include "StringLiteralRules.h"
|
||||
#include <QTextStream>
|
||||
|
||||
void StringLiteralRules::OutputString(QTextStream &stream, QString string_literal)
|
||||
{
|
||||
stream << m_stringStart;
|
||||
|
||||
|
||||
stream << m_stringEnd;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue