using System.Collections; using System.Collections.Generic; using System.Text.RegularExpressions; using System.Text; namespace Rokojori { public abstract class LexerEventSelector { public abstract bool Selects( LexerEvent e ); } }