Esempio n. 1
0
            override public bool ParseLine(FahLogParser flp, string Line)
            {
                Match m = Regex.Match(Line, std_prepend + new_wu);

                if (m.Success)
                {
                    flp.UpdateProject(int.Parse(m.Groups["wu_slot"].Value), int.Parse(m.Groups["f_slot"].Value), int.Parse(m.Groups["project"].Value),
                                      int.Parse(m.Groups["run"].Value), int.Parse(m.Groups["clone"].Value), int.Parse(m.Groups["gen"].Value), m.Groups["fahcore"].Value);
                }
                return(m.Success);
            }