cbsref/telephonyrefplugins/atltsy/atcommand/phone/inc/atgetimei.h
branchRCL_3
changeset 20 07a122eea281
parent 19 630d2f34d719
child 21 4814c5a49428
--- a/cbsref/telephonyrefplugins/atltsy/atcommand/phone/inc/atgetimei.h	Tue Aug 31 16:23:08 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,98 +0,0 @@
-// Copyright (c) 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:
-// @file atgetimei.h
-// This contains CATGetImei which is defines the AT command for Getting Serial Numuber
-// 
-
-
-#ifndef ATGETIMEI_H__
-#define ATGETIMEI_H__
-
-//system include
-#include <etelmm.h>
-//user include
-#include "atcommandbase.h"
-/**
- * \class CATGetImei 
- * \brief get the phone Serial Numuber in the GSM Network.
- *
- * CATGetImei inherits from the CAtCommandBase class. 
- * This class transmits the AT+CGSN Command in order to get Serial Numuber 
- * in the phone.
- */
-class CATGetImei : public CAtCommandBase
-{
-public:
-	static CATGetImei* NewL(CGlobalPhonemanager& aGloblePhone, 
-		                    CCtsyDispatcherCallback& aCtsyDispatcherCallback);
-
-	/**
-	 * Destructor
-	 *
-	 */
-	~CATGetImei();
-
-	/**
-	 * Virtual function. Inherited from CAtCommandBase
-	 *  Start Execute AT Command
-	 */
-	virtual void ExecuteCommand();
-	/**
-	 * Get the return value executed AT Command
-	 */
-	RMobilePhone::TMobilePhoneIdentityV1 GetPhoneImei();
-	/**
-	 * Get error value executed AT Command
-	 */
-	TInt GetErrorValue();
-	/**
-	 * Virtual function. Inherited from CAtCommandBase
-	 * @param aResponseBuf Line buf reading from baseband 
-	 */
-	void ParseResponseL(const TDesC8& aResponseBuf);
-	/**
-	 * Start this request
-	 */
-	virtual void StartRequest();
-	
-protected:
-	/**
-	 * Constructor
-	 *
-	 * @param aGloblePhone
-	 * @param aCtsyDispatcherCallback
-	 */
-	CATGetImei(CGlobalPhonemanager& aGloblePhone, 
-		       CCtsyDispatcherCallback& aCtsyDispatcherCallback);
-	
-	/**
-	 * 2nd Constructor
-	 */
-	void ConstructL();
-private:
-	/**
-	 * The return infomation is  multi-word?
-	 */
-	TBool iMoreInfoFlag;
-	/**
-	 * The return phone infomation  of AT command executed 
-	 */
-	RMobilePhone::TMobilePhoneIdentityV1 iPhoneId;
-	/**
-	 * The return error value of AT command executed 
-	 */
-	TInt iError;
-};
-
-#endif // ATGETIMEI_H__