srsf/vcexecutorapp/inc/appcontrolleractiveobject.h
branchRCL_3
changeset 19 e36f3802f733
parent 0 bf1d17376201
equal deleted inserted replaced
18:cad71a31b7fc 19:e36f3802f733
       
     1 /*
       
     2 * Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Active object to handle global list query results.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef CAPPCONTROLLERACTIVEOBJECT_H
       
    19 #define CAPPCONTROLLERACTIVEOBJECT_H
       
    20 
       
    21 //  INCLUDES
       
    22 #include <e32base.h>
       
    23 #include <badesca.h>
       
    24 
       
    25 // FORWARD DECLARATIONS
       
    26 class CVCApplicationControllerImpl;
       
    27 
       
    28 /**
       
    29 *  Active object to handle note results.
       
    30 */
       
    31 class CAppControllerActiveObject : public CActive
       
    32     {
       
    33     public:  // Constructors and destructor
       
    34         
       
    35         /**
       
    36         * C++ default constructor.
       
    37         * 
       
    38         */
       
    39         CAppControllerActiveObject(CVCApplicationControllerImpl& aController);
       
    40      
       
    41         /**
       
    42         * Destructor.
       
    43         */
       
    44         virtual ~CAppControllerActiveObject();
       
    45 
       
    46 
       
    47     public: // Functions from base classes
       
    48 
       
    49         /**
       
    50         * @see CActive::DoCancel.
       
    51         */
       
    52         void DoCancel();
       
    53 
       
    54         /**
       
    55         * @see CActive::RunL.
       
    56         */
       
    57         void RunL();
       
    58 
       
    59         /**
       
    60         * @see CActive::RunError.
       
    61         */
       
    62         TInt RunError( TInt aError );
       
    63 
       
    64         /**
       
    65         * @see CActive::SetActive.
       
    66         */
       
    67         void SetActive();
       
    68 
       
    69 	private: // Data
       
    70 		CVCApplicationControllerImpl& iController;
       
    71     };
       
    72 
       
    73 #endif      // CAPPCONTROLLERACTIVEOBJECT_H 
       
    74             
       
    75 // End of File