Changeset 34843 in webkit for trunk/JavaScriptCore/kjs/BooleanConstructor.h
- Timestamp:
- Jun 27, 2008, 9:29:48 PM (17 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/BooleanConstructor.h
r34842 r34843 19 19 */ 20 20 21 #ifndef Boolean Object_h22 #define Boolean Object_h21 #ifndef BooleanConstructor_h 22 #define BooleanConstructor_h 23 23 24 24 #include "FunctionPrototype.h" 25 #include "JSWrapperObject.h"26 25 27 26 namespace KJS { 28 29 class BooleanObject : public JSWrapperObject {30 public:31 BooleanObject(JSObject* proto);32 33 virtual const ClassInfo* classInfo() const { return &info; }34 static const ClassInfo info;35 };36 37 /**38 * @internal39 *40 * The initial value of Boolean.prototype (and thus all objects created41 * with the Boolean constructor42 */43 class BooleanPrototype : public BooleanObject {44 public:45 BooleanPrototype(ExecState*, ObjectPrototype*, FunctionPrototype*);46 };47 27 48 28 /** … … 64 44 } // namespace KJS 65 45 66 #endif // Boolean Object_h46 #endif // BooleanConstructor_h
Note:
See TracChangeset
for help on using the changeset viewer.