14 lines
245 B
C#
14 lines
245 B
C#
![]() |
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 );
|
||
|
}
|
||
|
|
||
|
}
|