using System.Collections.Generic; namespace Lexer { public interface ILexer where T : class { T NextToken(); List ParseAll(); } }