Пример #1
0
/**
 * Constructor.
 */
JavaImport::JavaImport(CodeImpThread* thread)
  : NativeImportBase("//", thread)
{
    setMultiLineComment("/*", "*/");
    initVars();
}
Пример #2
0
/**
 * Constructor.
 */
PythonImport::PythonImport(CodeImpThread* thread)
  : NativeImportBase(QLatin1String("#"), thread)
{
    setMultiLineComment(QLatin1String("\"\"\""), QLatin1String("\"\"\""));
    initVars();
}
Пример #3
0
/**
 * Constructor.
 */
PythonImport::PythonImport(CodeImpThread* thread)
  : NativeImportBase("#", thread)
{
    setMultiLineComment("\"\"\"", "\"\"\"");
    initVars();
}
Пример #4
0
/**
 * Constructor.
 */
PascalImport::PascalImport() : NativeImportBase("//")
{
    setMultiLineComment("(*", "*)");
    setMultiLineAltComment("{", "}");
    initVars();
}