Changeset 15469 for trunk/JavaScriptCore/API/JSCallbackConstructor.h
- Timestamp:
- 07/16/06 15:17:04 (2 years ago)
- Files:
-
- 1 modified
-
trunk/JavaScriptCore/API/JSCallbackConstructor.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/API/JSCallbackConstructor.h
r15376 r15469 41 41 virtual JSObject* construct(ExecState*, const List &args); 42 42 43 void setPrivate(void* data);44 void* getPrivate();45 46 43 virtual const ClassInfo *classInfo() const { return &info; } 47 44 static const ClassInfo info; … … 51 48 JSCallbackConstructor(const JSCallbackConstructor&); 52 49 53 void* m_privateData;54 50 JSObjectCallAsConstructorCallback m_callback; 55 51 };