Esempio n. 1
0
 internal Tk0dConfigParser(Mode mode, string input)
 {
     ParserMode = mode;
     if (mode == Mode.Animation)
     {
         Animation = new ParsedAnimation();
     }
     else
     {
         Collection = new ParsedCollection();
     }
     Input    = input;
     CurLine  = 1;
     CurChar  = 0;
     LastLine = 1;
     LastChar = 0;
 }
Esempio n. 2
0
 public TagPage(string html, URL request, URL response, MovieId id)
     : base(html, request, response, id)
 {
     Taglines = new ParsedCollection<string>(parseTaglines(html));
 }