author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Thu, 27 Aug 2009 07:44:59 +0300 | |
changeset 16 | a359256acfc6 |
parent 13 | 10e98eab6f85 |
permissions | -rw-r--r-- |
13 | 1 |
/* |
16
a359256acfc6
Revision: 200929
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
13
diff
changeset
|
2 |
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
13 | 3 |
* All rights reserved. |
4 |
* This component and the accompanying materials are made available |
|
5 |
* under the terms of the License "Eclipse Public License v1.0" |
|
6 |
* which accompanies this distribution, and is available |
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 |
* |
|
9 |
* Initial Contributors: |
|
10 |
* Nokia Corporation - initial contribution. |
|
11 |
* |
|
12 |
* Contributors: |
|
13 |
* |
|
16
a359256acfc6
Revision: 200929
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
13
diff
changeset
|
14 |
* Description: Interface MJSObjectProtector |
13 | 15 |
* |
16 |
*/ |
|
17 |
||
18 |
#ifndef __WIDGETJSOBJECTPROTECTOR_H__ |
|
19 |
#define __WIDGETJSOBJECTPROTECTOR_H__ |
|
20 |
||
21 |
namespace KJS { |
|
22 |
class JSValue; |
|
23 |
} |
|
24 |
||
25 |
class MJSObjectProtector |
|
26 |
{ |
|
27 |
public: |
|
28 |
virtual void Protect(KJS::JSValue*) = 0; |
|
29 |
virtual void Unprotect(KJS::JSValue*) = 0; |
|
30 |
}; |
|
31 |
||
32 |
#endif // !__WIDGETJSOBJECTPROTECTOR_H__ |