示例#1
0
        private async void Init()
        {
            QDataParser.ParseResult parseResult = await _qDataParser.Parse();

            _qProcessor = new QProcessor(_qmodel, parseResult);

            if (OnBuildReady != null)
            {
                OnBuildReady();
            }
        }
 public QProcessor(QModel qmodel, QDataParser.ParseResult parseResult)
 {
     this._qmodel         = qmodel;
     this._rawParseResult = parseResult;
 }