serviceproviders/sapi_sysinfo/inc/sysinfoobserver.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 25 May 2010 13:38:11 +0300
branchRCL_3
changeset 39 1aa6688bfd6b
parent 5 989d2f495d90
permissions -rw-r--r--
Revision: 201019 Kit: 2010121

/*
* Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "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:  CSysInfoObserver class for handling async requests
*
*/


#ifndef __SYSINFOOBSERVER_H__
#define __SYSINFOOBSERVER_H__

#include <e32base.h>
#include "sysinfoservice.h"
#include "sysrequest.h"

//FORWARD DECLARATION
class CLiwGenericParamList;
class CSysInfoInterface;

/**
* CSysInfoObserver
* This class acts as an observer for all asynchronous requests. After the request
* is completed, it checks for error and packs it in output param list. If there
* is no error, then the iterator is also packed into the output param list.
*/
// CLASS DECLARATION
NONSHARABLE_CLASS(CSysInfoObserver): public CBase, public ISystemObserver
    {
    public: // New methods

    /**
    * NewL.
    * Two-phased constructor.
    * Create a CSysInfoObserver object.
    * @param aLmIface The CSysInfoInterface instance.
    * @return A pointer to the newly created instance of CSysInfoObserver.
    */
    static CSysInfoObserver* NewL( CSysInfoInterface* aSysInfoIf );

    /**
    * ~CSysInfoObserver
    * Destructor.
    */
    ~CSysInfoObserver() {}

    public:// from ISystemObserver

    /**
    * HandleResponseL ()
    * Delegates asycn response to client by calling 
    * MLiwNotifyCallback::HandleNotifyL().
    */		
    void HandleResponseL(const TDesC& aEntity,const TDesC& aKey, 
                            CSysData* aOutput, TInt32 aTransID, 
                            TSysRequest::TRequestType aType, TInt aError);

    private: // Constructors

    /**
    * CSysInfoObserver.
    * C++ default constructor.
    * @param aSysInfoIf The CSysInfoInterface instance.
    */
    CSysInfoObserver( CSysInfoInterface* aSysInfoIf );

    private: //Data        

    /**
    * iSysInfoIf
    * Handle to CSysInfoInterface instance.
    */
    CSysInfoInterface* iSysInfoIf;
    };

#endif // __SYSINFOOBSERVER_H__

// End of File