diff -r 14460bf2a402 -r f50f4094acd7 cbsref/telephonyrefplugins/atltsy/integrationtest/inc/testltsysmsshareddata.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cbsref/telephonyrefplugins/atltsy/integrationtest/inc/testltsysmsshareddata.h Tue Jul 06 15:36:38 2010 +0300 @@ -0,0 +1,39 @@ +// TestTelephonySmsSharedData.h +// Copyright (c) Symbian Software Ltd 2008. All rights reserved. +// +// Implementation of the Class CTestTelephonySmsSharedData + +#ifndef TESTTELEPHONYSMSSHAREDDATA_H +#define TESTTELEPHONYSMSSHAREDDATA_H + +// system include +#include +#include +#include + +/** + * This class defines the shared data of sms test category between + * different test steps. + */ +class CTestLtsySmsSharedData : public CBase +/** + * @internalAll + * @test + */ + { +public: + CTestLtsySmsSharedData(); + virtual ~CTestLtsySmsSharedData(); + static CTestLtsySmsSharedData* NewL(); + RArray& SmsMessagingArray(); + RArray& SmsStoreArray(); + void Reset(); + void InitializeL(); +private: + void ConstructL(); +private: + RArray iMessaging; + RArray iSmsStore; + }; + +#endif // TESTTELEPHONYSMSSHAREDDATA_H