00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #include "CImplementationClassTwo.h"
00017
00018
00019
00020 CImplementationClassTwo* CImplementationClassTwo::NewL(TAny* aParams)
00021 {
00022 CImplementationClassTwo* self=new(ELeave) CImplementationClassTwo(aParams);
00023 CleanupStack::PushL(self);
00024 self->ConstructL();
00025 CleanupStack::Pop();
00026 return self;
00027 }
00028
00029 CImplementationClassTwo::~CImplementationClassTwo()
00030 {
00031 delete iDescriptor;
00032 }
00033
00034 CImplementationClassTwo::CImplementationClassTwo(TAny* aInitParams)
00035 : iInitParams((CExampleInterface::TExampleInterfaceInitParams*)aInitParams)
00036 {
00037
00038 }
00039
00040 void CImplementationClassTwo::ConstructL()
00041
00042 {
00043
00044 _LIT(KDescriptor, "Using Implementation Two\n");
00045 iDescriptor = KDescriptor().AllocL();
00046 }
00047
00048
00049
00050
00051 void CImplementationClassTwo::DoMethodL(TDes& aString)
00052 {
00053 aString = *iDescriptor;
00054
00055 if (iInitParams)
00056 iInitParams->integer=2;
00057 }
00058