Skip to content

Commit

Permalink
2006-04-01 Zoltan Varga <vargaz@gmail.com>
Browse files Browse the repository at this point in the history
	* Stopwatch.cs: New file.

svn path=/trunk/mcs/; revision=58896
  • Loading branch information
vargaz committed Apr 1, 2006
1 parent b4cea30 commit f18eca3
Show file tree
Hide file tree
Showing 2 changed files with 109 additions and 0 deletions.
4 changes: 4 additions & 0 deletions mcs/class/System/System.Diagnostics/ChangeLog
@@ -1,3 +1,7 @@
2006-04-01 Zoltan Varga <vargaz@gmail.com>

* Stopwatch.cs: New file.

2006-03-31 Zoltan Varga <vargaz@gmail.com>

* Debug.cs: Add net 2.0 Print methods.
Expand Down
105 changes: 105 additions & 0 deletions mcs/class/System/System.Diagnostics/Stopwatch.cs
@@ -0,0 +1,105 @@
//
// System.Diagnostics.Stopwatch.cs
//
// Authors:
// Zoltan Varga (vargaz@gmail.com)
//
// (C) 2001 Ximian, Inc. http://www.ximian.com
// Copyright (C) 2004-2005 Novell (http://www.novell.com)
//

//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//

#if NET_2_0

using System;

namespace System.Diagnostics {

public class Stopwatch {

public static readonly long Frequency;

public static readonly bool IsHighResolution;

[MonoTODO]
public Stopwatch () {
throw new NotImplementedException ();
}

[MonoTODO]
public TimeSpan Elapsed {
get {
throw new NotImplementedException ();
}
}

[MonoTODO]
public long ElapsedMilliseconds {
get {
throw new NotImplementedException ();
}
}

[MonoTODO]
public long ElapsedTicks {
get {
throw new NotImplementedException ();
}
}

[MonoTODO]
public bool IsRunning {
get {
throw new NotImplementedException ();
}
}

[MonoTODO]
public static long GetTimestamp () {
throw new NotImplementedException ();
}

[MonoTODO]
public void Reset () {
throw new NotImplementedException ();
}

[MonoTODO]
public void Start () {
throw new NotImplementedException ();
}

[MonoTODO]
public void Stop () {
throw new NotImplementedException ();
}

public static Stopwatch StartNew () {
Stopwatch s = new Stopwatch ();
s.Start ();
return s;
}
}
}

#endif

0 comments on commit f18eca3

Please sign in to comment.