vtuis/lcvtplugin/inc/base/clcvtengine.h
branchRCL_3
changeset 24 f15ac8e65a02
equal deleted inserted replaced
23:890b5dd735f8 24:f15ac8e65a02
       
     1 /*
       
     2 * Copyright (c) 2008 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:  LiveComm Videotelephony Plugin Class
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef CLCVTENGINE_H
       
    19 #define CLCVTENGINE_H
       
    20 
       
    21 #include <e32base.h>
       
    22 #include <lcengine.h>
       
    23 
       
    24 class CLcVtSession;
       
    25 class MLcSessionObserver;
       
    26 class MLcUiProvider;
       
    27 class MLcSession;
       
    28 
       
    29 class CLcVtEngine : public CLcEngine
       
    30     {
       
    31 public:
       
    32     
       
    33     /**
       
    34     * Static constructor
       
    35     *
       
    36     * @param aParams ECom instantiation parameters
       
    37     * @return An initialized instance of this class.
       
    38     */
       
    39     static CLcVtEngine* NewL( TAny* aParams );
       
    40     
       
    41     ~CLcVtEngine();
       
    42     
       
    43 public: // From CLcEngine
       
    44     
       
    45     MLcSession& Session();
       
    46 
       
    47     TBool IsFeatureSupported( TLcFeature aLcFeature );
       
    48 
       
    49 private: 
       
    50     void ConstructL();
       
    51     CLcVtEngine();
       
    52     
       
    53 private:
       
    54     
       
    55     CLcVtSession* iSession;
       
    56     
       
    57     };
       
    58 
       
    59 #endif // CLCVTENGINE_H
       
    60 
       
    61 // End of File