* Refractored a bit.
[ngenerator.git] / ITranslator.cs
blob06aaa6986e2b32ebf37a106e576a76bb3a5f962a
1 // /home/jeremie/TaoParser/NGenerator/ITranslator.cs
2 // Writtent by jeremie at 14:19 04/06/2007
3 //
4 // This file is licensed under the LGPL licence as described in the COPYING file
6 using System;
7 using System.CodeDom;
8 using System.IO;
10 namespace NGenerator
12 public interface ITranslator
14 /// <summary>
15 /// The fileinfo contain the document (XML or not) which will be used
16 /// by the target Translator to build a corresponding CodeDOM tree
17 /// </summary>
18 CodeCompileUnit Translate(string filename);