diff -r 000000000000 -r b497e44ab2fc omaprovisioning/provisioning/ProvisioningEngine/Inc/CWPPhoneEmul.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/omaprovisioning/provisioning/ProvisioningEngine/Inc/CWPPhoneEmul.h Thu Dec 17 09:07:52 2009 +0200 @@ -0,0 +1,84 @@ +/* +* Copyright (c) 2002 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: Emulator for CWPPhone +* +*/ + + +#ifndef CWPPHONEEMUL_H +#define CWPPHONEEMUL_H + +// INCLUDES +#include +#include +#include "MWPPhone.h" + +// FORWARD DECLARATIONS + +// CLASS DECLARATION + +/** + * Emulator for CWPPhone. +* +* @lib ProvisioningEngine +* @since 2.0 + */ +class CWPPhoneEmul : public CBase, public MWPPhone + { + public: // Constructors and destructor + + /** + * Two-phased constructor. + */ + static CWPPhoneEmul* NewL(); + + /** + * Two-phased constructor. + */ + static CWPPhoneEmul* NewLC(); + + /** + * Destructor. + */ + virtual ~CWPPhoneEmul(); + + public: // From MWPPhone + + const RMobilePhone::TMobilePhoneSubscriberId& SubscriberId() const; + const RMobilePhone::TMobilePhoneNetworkCountryCode& Country() const; + const RMobilePhone::TMobilePhoneNetworkIdentity& Network() const; + + private: + /** + * C++ default constructor. + */ + CWPPhoneEmul(); + + /** + * By default Symbian 2nd phase constructor is private. + */ + void ConstructL(); + + private: + /// IMSI. + RMobilePhone::TMobilePhoneSubscriberId iIMSI; + /// Country code + RMobilePhone::TMobilePhoneNetworkCountryCode iCountry; + /// Network identity + RMobilePhone::TMobilePhoneNetworkIdentity iNetwork; + }; + +#endif // CWPPHONEEMUL_H + +// End of File