diff -r 2473f5e227f9 -r 8b72faa1200f cbsref/telephonyrefplugins/atltsy/atcommand/phone/inc/atgetmanufacturer.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cbsref/telephonyrefplugins/atltsy/atcommand/phone/inc/atgetmanufacturer.h Tue Jun 22 11:02:32 2010 +0100 @@ -0,0 +1,93 @@ +// 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 atgetmanufacturer.h +// This contains CATGetManufacturer which is defines the AT command for Getting manufacturer +// + +#ifndef ATGETMANUFACTURER_H__ +#define ATGETMANUFACTURER_H__ + +//system include +#include +//user include +#include "atcommandbase.h" +/** + * \class CATGetManufacturer + * \brief get the phone manufacturer in the GSM Network. + * + * CATGetManufacturer inherits from the CAtCommandBase class. + * This class transmits the AT+CGMI Command in order to get manufacturer + * in the phone. + */ +class CATGetManufacturer : public CAtCommandBase +{ +public: + static CATGetManufacturer* NewL(CGlobalPhonemanager& aGloblePhone, + CCtsyDispatcherCallback& aCtsyDispatcherCallback); + /** + * Destructor + * + */ + ~CATGetManufacturer(); + + /** + * Virtual function. Inherited from CAtCommandBase + * Start Execute AT Command + */ + virtual void ExecuteCommand(); + /** + * Get the return value executed AT Command + */ + RMobilePhone::TMobilePhoneIdentityV1 GetPhoneManufacturer(); + /** + * 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 + */ + CATGetManufacturer(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 // ATGETMANUFACTURER_H__