tsrc/musenginestub/inc/musengsession.h
changeset 22 496ad160a278
equal deleted inserted replaced
15:ccd8e69b5392 22:496ad160a278
       
     1 /*
       
     2 * Copyright (c) 2005 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 
       
    19 #ifndef MUSENGSESSION_H
       
    20 #define MUSENGSESSION_H
       
    21 
       
    22 
       
    23 //SYSTEM INCLUDES
       
    24 #include <e32base.h>
       
    25 
       
    26 
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 * Base class for Multimedia Sharing Engine sessions, inherited by
       
    32 * CMusEngMceSession.
       
    33 *
       
    34 * CMusEngSession encapsulates all common activities example using
       
    35 * resources.
       
    36 *
       
    37 * @lib musengine.lib
       
    38 */
       
    39 class CMusEngSession : public CBase
       
    40     {
       
    41    
       
    42     public:
       
    43 
       
    44         /**
       
    45         * Desctructor, finalize session
       
    46         *
       
    47         */
       
    48         ~CMusEngSession();
       
    49 
       
    50 
       
    51 
       
    52     protected:
       
    53 
       
    54         /**
       
    55         * Constructor, private cannot be instantiate
       
    56         *
       
    57         * @param aRect reserved drawing area for this session
       
    58         */
       
    59         CMusEngSession();
       
    60 
       
    61 
       
    62     protected:
       
    63 
       
    64         /**
       
    65         * second-phase constructor, called by those session specific 
       
    66         * constructors
       
    67         */
       
    68         void ConstructL();
       
    69 
       
    70     };
       
    71 
       
    72 #endif //MUSENGSESSION_H