2005-03-30 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / bmcs / parser.cs
1
2 namespace Compiler {
3
4         using System;
5
6         abstract public class Parser {
7                 public string name;
8                 public System.IO.Stream input;
9                 
10                 public Parser (Mono.CSharp.Tree tree, string name, System.IO.Stream stream) 
11                 {
12                         this.tree = tree;
13                         this.name = name;
14                         this.input = stream;
15                 }
16
17                 public string getName (){
18                         return name;
19                 }
20
21                 abstract public int parse ();
22         }
23 }