Changeset 17031 in webkit for trunk/JavaScriptCore/kjs/date_object.h
- Timestamp:
- Oct 13, 2006, 10:31:11 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/date_object.h
r17010 r17031 27 27 namespace KJS { 28 28 29 struct tm;29 struct GregorianDateTime; 30 30 31 31 class FunctionPrototype; … … 36 36 DateInstance(JSObject *proto); 37 37 38 bool getTime( tm &t, int &gmtoffset) const;39 bool getUTCTime( tm &t) const;40 bool getTime(double &ms, int &gmtoffset) const;41 bool getUTCTime(double &ms) const;38 bool getTime(GregorianDateTime&, int& offset) const; 39 bool getUTCTime(GregorianDateTime&) const; 40 bool getTime(double& milli, int& offset) const; 41 bool getUTCTime(double& milli) const; 42 42 43 43 virtual const ClassInfo *classInfo() const { return &info; }
Note:
See TracChangeset
for help on using the changeset viewer.