2003-09-04 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / class / System.Web.Mobile / System.Web.UI.MobileControls / MobilePage.cs
1 /**
2  * Project   : Mono
3  * Namespace : System.Web.UI.MobileControls
4  * Class     : MobilePage
5  * Author    : Gaurav Vaish
6  *
7  * Copyright : 2003 with Gaurav Vaish, and with
8  *             Ximian Inc
9  */
10
11 using System.Web.UI;
12 using System.Web.Mobile;
13
14 namespace System.Web.UI.MobileControls
15 {
16         public class MobilePage : Page
17         {
18                 public MobilePage()
19                 {
20                 }
21
22                 public virtual IControlAdapter GetControlAdapter(MobileControl control)
23                 {
24                         throw new NotImplementedException();
25                 }
26
27                 public Form ActiveForm
28                 {
29                         get
30                         {
31                                 throw new NotImplementedException();
32                         }
33                         set
34                         {
35                                 throw new NotImplementedException();
36                         }
37                 }
38
39                 public Form GetForm(string id)
40                 {
41                         throw new NotImplementedException();
42                 }
43                 
44                 public IPageAdapter Adapter
45                 {
46                         get
47                         {
48                                 throw new NotImplementedException();
49                         }
50                 }
51         }
52 }