~alexreg/mathtexdotnet/0.1

« back to all changes in this revision

Viewing changes to TexDotNet/Syntax/ITexLexer.cs

  • Committer: Alex Regueiro
  • Date: 2009-10-02 01:30:36 UTC
  • Revision ID: alexreg@gmail.com-20091002013036-0tfciubgveydmtm5
Further improvements to TexComposer regarding emitting of operators/brackets.
Updated test cases.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
using System;
 
2
using System.Collections.Generic;
 
3
using System.IO;
 
4
using System.Linq;
 
5
using System.Text;
 
6
 
 
7
namespace TexDotNet
 
8
{
 
9
    using TokenStream = IEnumerator<TexToken>;
 
10
 
 
11
    public interface ILexer
 
12
    {
 
13
        TokenStream Tokenise(TextReader reader);
 
14
    }
 
15
}