equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "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 * |
|
14 * Description: Test2RtcPlugin |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef TEST2RTCPLUGIN_H |
|
19 #define TEST2RTCPLUGIN_H |
|
20 |
|
21 #include "javaosheaders.h" |
|
22 |
|
23 #include "rtcplugininterface.h" |
|
24 |
|
25 namespace java |
|
26 { |
|
27 namespace captain |
|
28 { |
|
29 |
|
30 OS_NONSHARABLE_CLASS(Test2RtcPlugin) : public RtcPluginInterface |
|
31 { |
|
32 public: |
|
33 virtual RtcRuntimeInterface* createNewRuntimeInstance(const Uid& aUID, CoreInterface* aCore); |
|
34 }; |
|
35 |
|
36 } // namespace captain |
|
37 } // namespace java |
|
38 |
|
39 #endif // TEST2RTCPLUGIN_H |
|
40 |