2003-07-13 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[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("82840be1-d273-11d2-b94a-00600893b17a")]
18         public sealed class PerformanceCounterManager : ICollectData {
19
20                 [MonoTODO]
21                 public PerformanceCounterManager ()
22                 {
23                 }
24
25                 [MonoTODO]
26                 void ICollectData.CloseData ()
27                 {
28                         throw new NotImplementedException ();
29                 }
30
31                 [MonoTODO]
32                 void ICollectData.CollectData (
33                         int callIdx,
34                         IntPtr valueNamePtr,
35                         IntPtr dataPtr,
36                         int totalBytes,
37                         out IntPtr res)
38                 {
39                         throw new NotImplementedException ();
40                 }
41         }
42 }
43