idlefw/tsrc/sapidataplugin/common/interface.h
branchRCL_3
changeset 111 053c6c7c14f3
equal deleted inserted replaced
110:2c7f27287390 111:053c6c7c14f3
       
     1 /*
       
     2 * Copyright (c) 2010 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:  
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef __INTERFACE_EU_H__
       
    19 #define __INTERFACE_EU_H__
       
    20 
       
    21 // External includes
       
    22 #include <e32base.h>
       
    23 #include <liwvariant.h>
       
    24 
       
    25 /**
       
    26  * Observer class
       
    27  */
       
    28 class Interface_EU : public CBase, 
       
    29     public MLiwInterface
       
    30     {
       
    31 public:
       
    32     static Interface_EU* NewL();
       
    33 
       
    34     ~Interface_EU();
       
    35 
       
    36     void ExecuteCmdL(const TDesC8& aCmdName,
       
    37                      const CLiwGenericParamList& aInParamList,
       
    38                      CLiwGenericParamList& aOutParamList,
       
    39                      TUint aCmdOptions = 0,
       
    40                      MLiwNotifyCallback* aCallback = 0);
       
    41     
       
    42     void Close();
       
    43     
       
    44 protected:
       
    45     void ConstructL();
       
    46 
       
    47 private:
       
    48     Interface_EU();
       
    49     };
       
    50 
       
    51 #endif // __INTERFACE_EU_H__
       
    52 
       
    53 // End of File.