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