2003-07-27 Cesar Lopez Nataren <cesar@ciencias.unam.mx>
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / DateConstructor.cs
1 //
2 // DateConstructor.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 DateConstructor : ScriptFunction
14         {
15                 [JSFunctionAttribute (JSFunctionAttributeEnum.HasVarArgs)]
16                 public new DateObject CreateInstance (params Object[] args)
17                 {
18                         throw new NotImplementedException ();
19                 }
20
21                 public String Invoke ()
22                 {
23                         throw new NotImplementedException ();
24                 }
25
26                 [JSFunctionAttribute(0, JSBuiltin.Date_parse)]
27                 public static double parse (String str)
28                 {
29                         throw new NotImplementedException ();
30                 }
31
32                 [JSFunctionAttribute(0, JSBuiltin.Date_UTC)]
33                 public static double UTC (Object year, Object month, Object date, 
34                                           Object hours, Object minutes, Object seconds, Object ms)
35                 {
36                         throw new NotImplementedException ();
37                 }
38         }
39 }