cbsref/telephonyrefplugins/atltsy/integrationtest/inc/testltsysmsshareddata.h
changeset 49 f50f4094acd7
--- /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 <e32cmn.h>
+#include <e32base.h>
+#include <etelmm.h>
+
+/**
+ * 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<RMobileSmsMessaging>& SmsMessagingArray();
+	RArray<RMobileSmsStore>& SmsStoreArray();
+	void Reset();
+	void InitializeL();
+private:
+	void ConstructL();
+private:
+	RArray<RMobileSmsMessaging> iMessaging;
+	RArray<RMobileSmsStore> iSmsStore;
+	};
+
+#endif // TESTTELEPHONYSMSSHAREDDATA_H