equal
deleted
inserted
replaced
|
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifndef SYMBIAN_NODE1_H |
|
17 #define SYMBIAN_NODE1_H |
|
18 |
|
19 #include <dummynode.h> |
|
20 |
|
21 class CNode1Factory; |
|
22 class CNode1 : public Dummy::CTestNodeBase |
|
23 { |
|
24 public: |
|
25 static CNode1* NewL(CNode1Factory& aFactory); |
|
26 |
|
27 protected: |
|
28 CNode1(CNode1Factory& aFactory); |
|
29 virtual ~CNode1(); |
|
30 virtual void ReceivedL(const Messages::TRuntimeCtxId& aSender, const Messages::TNodeId& aRecipient, Messages::TSignatureBase& aMessage); |
|
31 virtual TUid ServiceProviderUid() const; |
|
32 }; |
|
33 |
|
34 #endif //SYMBIAN_NODE1_H |
|
35 |