* ChangeLog: added file
[mono.git] / mcs / class / System.Messaging / System.Messaging.Design / QueuePathDialog.cs
1 //
2 // System.Messaging.Design.QueuePathDialog
3 //
4 // Authors:
5 //      Gert Driesen (drieseng@users.sourceforge.net)
6 //
7 // (C) 2004 Novell
8 //
9
10 using System.ComponentModel;
11 using System.Drawing.Design;
12 using System.Windows.Forms;
13 using System.Windows.Forms.Design;
14
15 namespace System.Messaging.Design
16 {
17         [MonoTODO]
18         public class QueuePathDialog : Form
19         {
20                 [MonoTODO]
21                 public QueuePathDialog (IServiceProvider provider)
22                 {
23                         throw new NotImplementedException ();
24                 }
25
26                 [MonoTODO]
27                 public QueuePathDialog (IUIService uiService)
28                 {
29                         throw new NotImplementedException ();
30                 }
31
32                 [MonoTODO]
33                 public void ChoosePath ()
34                 {
35                         throw new NotImplementedException ();
36                 }
37
38                 [MonoTODO]
39                 public void DoubleClicked (object source, EventArgs e)
40                 {
41                         throw new NotImplementedException ();
42                 }
43
44                 [MonoTODO]
45                 public void SelectQueue (MessageQueue queue)
46                 {
47                         throw new NotImplementedException ();
48                 }
49
50                 [MonoTODO]
51                 public string Path {
52                         get {
53                                 throw new NotImplementedException ();
54                         }
55                 }
56         }
57 }