| | |
| | | ****************************************************************************/
|
| | |
|
| | | using System;
|
| | | using System.Collections;
|
| | | using System.Collections.Generic;
|
| | | using System.Linq;
|
| | | using QtVsTools.SyntaxAnalysis;
|
| | |
|
| | | namespace QtVsTest.Macros
|
| | | {
|
| | | using System.Collections;
|
| | | using static QtVsTools.SyntaxAnalysis.RegExpr;
|
| | | using static RegExpr;
|
| | |
|
| | | class MacroLines : IEnumerable<MacroLine>
|
| | | {
|
| | | List<MacroLine> Lines = new List<MacroLine>();
|
| | | readonly List<MacroLine> Lines = new List<MacroLine>();
|
| | |
|
| | | public void Add(MacroLine line) { Lines.Add(line); }
|
| | |
|
| | |
| | |
|
| | | public class CodeLine : MacroLine
|
| | | {
|
| | | public string Code;
|
| | | public readonly string Code;
|
| | | public CodeLine(string code)
|
| | | {
|
| | | Code = code;
|