2003-07-27 Cesar Lopez Nataren <cesar@ciencias.unam.mx>
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / NumberObject.cs
1 //
2 // NumberObject.cs:
3 //
4 // Author: Cesar Octavio Lopez Nataren
5 //
6 // (C) 2003, Cesar Octavio Lopez Nataren, <cesar@ciencias.unam.mx>
7 //
8
9 namespace Microsoft.JScript.Tmp
10 {
11         using System;
12         
13         public class NumberObject : JSObject
14         {
15                 public new Type GetType ()
16                 {
17                         throw new NotImplementedException ();
18                 }
19         }
20 }