~alexreg/mathtexdotnet/0.1

« back to all changes in this revision

Viewing changes to TexDotNet/ParseTree.cs

  • Committer: Alex Regueiro
  • Date: 2009-08-07 23:14:32 UTC
  • Revision ID: alexreg@gmail.com-20090807231432-b4enxrxowf8ertnj
Initial commit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
using System;
 
2
using System.Collections.Generic;
 
3
using System.Linq;
 
4
using System.Text;
 
5
 
 
6
namespace TexDotNet
 
7
{
 
8
    public class ParseTree
 
9
    {
 
10
        public ParseTree(ParseNode rootNode)
 
11
        {
 
12
            this.RootNode = rootNode;
 
13
        }
 
14
 
 
15
        public ParseNode RootNode
 
16
        {
 
17
            get;
 
18
            private set;
 
19
        }
 
20
    }
 
21
}