Fix from Matt Kunze to add the other Process.Start overloads
[mono.git] / mcs / class / System / System.Diagnostics / PerformanceCounterManager.cs
1 //
2 // System.Diagnostics.PerformanceCounterManager.cs
3 //
4 // Authors:
5 //   Jonathan Pryor (jonpryor@vt.edu)
6 //
7 // (C) 2002
8 //
9
10 using System;
11 using System.Diagnostics;
12 using System.Runtime.InteropServices;
13
14 namespace System.Diagnostics {
15
16         [ComVisible(true)]
17         // [Guid("")]
18         public class PerformanceCounterManager : ICollectData {
19
20 //              [MonoTODO]
21 //              public PerformanceCounterManager ()
22 //              {
23 //                      throw new NotImplementedException ();
24 //              }
25 //
26                 [MonoTODO]
27                 void ICollectData.CloseData ()
28                 {
29                         throw new NotImplementedException ();
30                 }
31
32                 [MonoTODO]
33                 void ICollectData.CollectData (
34                         int callIdx,
35                         IntPtr valueNamePtr,
36                         IntPtr dataPtr,
37                         int totalBytes,
38                         out IntPtr res)
39                 {
40                         throw new NotImplementedException ();
41                 }
42         }
43 }
44