Changeset 12523 in webkit for trunk/JavaScriptCore/kjs/function.h
- Timestamp:
- Feb 2, 2006, 12:22:43 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/function.h
r12317 r12523 3 3 * This file is part of the KDE libraries 4 4 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 5 * Copyright (C) 2003 Apple Computer, Inc.5 * Copyright (C) 2003, 2006 Apple Computer, Inc. 6 6 * 7 7 * This library is free software; you can redistribute it and/or … … 22 22 */ 23 23 24 #ifndef _KJS_FUNCTION_H_25 #define _KJS_FUNCTION_H_24 #ifndef KJS_FUNCTION_H 25 #define KJS_FUNCTION_H 26 26 27 #include "array_instance.h" 27 28 #include "internal.h" 28 #include "array_instance.h"29 #include <kxmlcore/OwnPtr.h> 29 30 30 31 namespace KJS { … … 61 62 static const ClassInfo info; 62 63 protected: 63 Parameter *param;64 OwnPtr<Parameter> param; 64 65 Identifier ident; 65 66
Note:
See TracChangeset
for help on using the changeset viewer.