diff -r 000000000000 -r dfb7c4ff071f commsfwsupport/commselements/testing/dummynodes/src/node1.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/commsfwsupport/commselements/testing/dummynodes/src/node1.cpp Thu Dec 17 09:22:25 2009 +0200 @@ -0,0 +1,64 @@ +// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). +// All rights reserved. +// This component and the accompanying materials are made available +// under the terms of "Eclipse Public License v1.0" +// which accompanies this distribution, and is available +// at the URL "http://www.eclipse.org/legal/epl-v10.html". +// +// Initial Contributors: +// Nokia Corporation - initial contribution. +// +// Contributors: +// +// Description: +// + +#include +#include +#include "Node1Factory.h" +#include "Node1.h" + +using namespace Messages; +using namespace Dummy; + +#ifdef SYMBIAN_TRACE_ENABLE + _LIT8(KNode1Tag, "Node1"); +#endif + +//-========================================================= +// +// CNode1 methods +// +//-========================================================= +CNode1* CNode1::NewL(CNode1Factory& aFactory) + { + CNode1* provider = new (ELeave) CNode1(aFactory); + CleanupStack::PushL(provider); + provider->ConstructL(); + CleanupStack::Pop(provider); + return provider; + } + +CNode1::CNode1(CNode1Factory& aFactory) +: CTestNodeBase(aFactory, DummyActivities::dummyActivities::Self()) + { + NM_LOG_NODE_CREATE(KNode1Tag, CNode1); + } + +CNode1::~CNode1() + { + NM_LOG_NODE_DESTROY(KNode1Tag, CNode1); + } + +void CNode1::ReceivedL(const TRuntimeCtxId& aSender, const TNodeId& aRecipient, TSignatureBase& aMessage) + { + CTestNodeBase::ReceivedL(aSender, aRecipient, aMessage); + } + +TUid CNode1::ServiceProviderUid() const + { + //This will normally would be read from a DB.. + //In this case we hardcoded it to CNode2 UID + return TUid::Uid(0x10285A81); + } +