idlefw/tsrc/sapidataplugin/common/interface.cpp
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 // Class header
       
    19 #include "interface.h"
       
    20 
       
    21 // External includes
       
    22 //#include <coemain.h>
       
    23 //#include <f32file.h>
       
    24 //#include <gulicon.h>
       
    25 //#include <aicontentmodel.h>
       
    26 
       
    27 //const char KAiShortcutCaption[] = "ShortcutCaption";
       
    28 //const char KAiShortcutIcon[] = "ShortcutIcon";
       
    29 
       
    30 // ======== MEMBER FUNCTIONS ========
       
    31 
       
    32 //---------------------------------------------------------------------------
       
    33 // Interface_EU::Interface_EU()
       
    34 //---------------------------------------------------------------------------
       
    35 //
       
    36 Interface_EU::Interface_EU()
       
    37     {
       
    38     }
       
    39 
       
    40 //---------------------------------------------------------------------------
       
    41 // void Interface_EU::ConstructL()
       
    42 //---------------------------------------------------------------------------
       
    43 //
       
    44 void Interface_EU::ConstructL()
       
    45     {
       
    46     }
       
    47 
       
    48 //---------------------------------------------------------------------------
       
    49 // Interface_EU* Interface_EU::NewL()
       
    50 //---------------------------------------------------------------------------
       
    51 //
       
    52 Interface_EU* Interface_EU::NewL()
       
    53     {
       
    54     Interface_EU* self = new( ELeave ) Interface_EU();
       
    55     CleanupStack::PushL( self );
       
    56     self->ConstructL();
       
    57     CleanupStack::Pop( self );
       
    58     return self;
       
    59     }
       
    60 
       
    61 //---------------------------------------------------------------------------
       
    62 // Interface_EU::~Interface_EU()
       
    63 //---------------------------------------------------------------------------
       
    64 //
       
    65 Interface_EU::~Interface_EU()
       
    66     {
       
    67     }
       
    68 
       
    69 // ---------------------------------------------------------------------------
       
    70 // void Interface_EU::ExecuteCmdL(const TDesC8& aCmdName, const CLiwGenericParamList& aInParamList, CLiwGenericParamList& aOutParamList, TUint aCmdOptions = 0, MLiwNotifyCallback* aCallback = 0);
       
    71 // ---------------------------------------------------------------------------
       
    72 //
       
    73 void Interface_EU::ExecuteCmdL(const TDesC8& /*aCmdName*/,
       
    74                             const CLiwGenericParamList& /*aInParamList*/,
       
    75 							CLiwGenericParamList& /*aOutParamList*/,
       
    76 							TUint /*aCmdOptions*/,
       
    77 							MLiwNotifyCallback* /*aCallback*/)
       
    78     {
       
    79     }
       
    80     
       
    81 void Interface_EU::Close()
       
    82 	{
       
    83 	}
       
    84 
       
    85 // End of File.