Added some classes from the public API of Microsoft.JScript.
[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
10 {
11         using System;
12         
13         public class NumberObject : JSObject
14         {
15                 public new Type GetType ()
16                 {
17                         throw new NotImplementedException ();
18                 }
19         }
20 }