/* * StateUpgrade.h * * Created on: 27/feb/2011 * Author: Giovanna */ #ifndef STATEUPGRADE_H_ #define STATEUPGRADE_H_ // INCLUDES #include #include #include #include #include "AbstractState.h" // CLASS DECLARATION /** * CStateUpgrade * */ class CStateUpgrade : public CAbstractState { public: // Constructors and destructor /** * Destructor. */ ~CStateUpgrade(); /** * Two-phased constructor. */ static CStateUpgrade* NewL(MStateObserver& aObserver); /** * Two-phased constructor. */ static CStateUpgrade* NewLC(MStateObserver& aObserver); virtual void ActivateL(const TDesC8& aData); virtual void ProcessDataL(const TDesC8& aData); private: /** * Constructor for performing 1st stage construction */ CStateUpgrade(MStateObserver& aObserver); /** * EPOC default constructor for performing 2nd stage construction */ void ConstructL(); private: TBuf8<16> iSignKey; HBufC8* iRequestData; HBufC8* iResponseData; }; #endif /* STATEUPGRADE_H_ */ .