--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/telephonyserverplugins/simatktsy/inc/CSatNotifyPollInterval.h Tue Feb 02 01:41:59 2010 +0200
@@ -0,0 +1,117 @@
+/*
+* Copyright (c) 2005-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:
+* Name : CSatNotifyPollingInterval.h
+* Part of : Common SIM ATK TSY / commonsimatktsy
+* Specific notifications class
+* Version : 1.0
+*
+*/
+
+
+
+#ifndef CSATNOTIFYPOLLINTERVAL_H
+#define CSATNOTIFYPOLLINTERVAL_H
+
+
+// INCLUDES
+#include <etelsat.h>
+#include <e32math.h>
+#include "MSatNotificationsBase.h"
+
+// FORWARD DECLARATIONS
+class CSatDataPackage;
+class CSatNotificationsTsy;
+
+// DESCRIPTION
+/**
+* SAT Poll Interval notification class.
+* Created when client requests to be notified when Poll Interval
+* command arrives from SIM.
+*
+* This procedure negotiates how often the ME shall send STATUS commands
+* related to Proactive Polling
+* Does not require any interaction with the Symbian OS side, and has no impact
+* on the Etel API.
+* @lib Commonsimatktsy
+* @since 3.1
+*/
+NONSHARABLE_CLASS ( CSatNotifyPollInterval ) : public CBase,
+ private MSatNotificationsBase
+ {
+
+ public: // Constructors and destructor
+
+ /**
+ * Two-phased constructor.
+ * @param aNotificationsTsy: Pointer to NotificationsTsy
+ * return CSatNotifyPollInterval*: created object
+ */
+ static CSatNotifyPollInterval* NewL(
+ CSatNotificationsTsy* aNotificationsTsy );
+
+ /**
+ * C++ Destructor.
+ */
+ ~CSatNotifyPollInterval();
+
+ private:
+
+ /**
+ * By default C++ constructor is private.
+ * @param aNotificationsTsy: Pointer to NotificationsTsy
+ * @return None
+ */
+ CSatNotifyPollInterval( CSatNotificationsTsy* aNotificationsTsy );
+
+ /**
+ * Class attributes are created in ConstructL.
+ * @param None
+ * @return None
+ */
+ void ConstructL();
+
+ public: // Functions from base classes
+
+ /**
+ * Completes PollInterval message to client
+ * @param aDataPackage: Packaged return data
+ * @param aErrorCode: Possible error code
+ * @return KErrNone/ KErrCorrupt
+ */
+ TInt CompleteNotifyL( CSatDataPackage* aDataPackage, TInt aErrorCode );
+
+ public: // New functions
+
+ /**
+ * Create notification specific terminal response data
+ * @param aPCmdNumber: Proactive command number
+ * @param aGeneralResult: Result of the proactive command
+ * @param aAdditionalInfo: Additional info for terminal response
+ * @param aDcs: Data Coding Scheme
+ * @return Success/Failure value
+ */
+ TInt CreateTerminalRespL( TUint8 aPCmdNumber, TUint8 aGeneralResult,
+ TUint8 aAdditionalInfo, TUint8 aDcs );
+
+
+ private: // Data
+
+ RSat::TPollingIntervalRspV3 iPollingIntervalRspV3;
+ // Pointer to the notifications tsy class
+ CSatNotificationsTsy* iNotificationsTsy;
+ };
+
+
+#endif // CSATNOTIFYPOLLINTERVAL_H
\ No newline at end of file