2003-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Web / System.Web.Compilation / GlobalAsaxCompiler.cs
1 //
2 // System.Web.Compilation.GlobalAsaxCompiler
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2002,2003 Ximian, Inc (http://www.ximian.com)
8 //
9 using System;
10 using System.Web.UI;
11
12 namespace System.Web.Compilation
13 {
14         class GlobalAsaxCompiler : BaseCompiler
15         {
16                 ApplicationFileParser parser;
17
18                 public GlobalAsaxCompiler (ApplicationFileParser parser)
19                         : base (parser)
20                 {
21                         this.parser = parser;
22                 }
23
24                 public static Type CompileApplicationType (ApplicationFileParser parser)
25                 {
26                         GlobalAsaxCompiler compiler = new GlobalAsaxCompiler (parser);
27                         return compiler.GetCompiledType ();
28                 }
29
30                 [MonoTODO("Process application scope for object tags")]
31                 protected override void ProcessObjectTag (ObjectTagBuilder tag)
32                 {
33                         //TODO
34                 }
35         }
36 }
37