2003-12-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Web / System.Web.UI / ITemplate.cs
1 //
2 // System.Web.UI.ITemplate.cs
3 //
4 // Author:
5 //   Bob Smith <bob@thestuff.net>
6 //
7 // (C) Bob Smith
8 //
9
10 using System;
11 using System.Web;
12
13 namespace System.Web.UI
14 {
15         public interface ITemplate
16         {
17                 void InstantiateIn(Control container);
18         }
19 }