videoutils_plat/dvrengine_api/inc/ipvideo/CCRAPIBase.h
branchRCL_3
changeset 22 826cea16efd9
parent 21 798ee5f1972c
child 23 13a33d82ad98
equal deleted inserted replaced
21:798ee5f1972c 22:826cea16efd9
     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 the License "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:    Interface for Common recording engine, common part*
       
    15 */
       
    16 
       
    17 
       
    18 
       
    19 
       
    20 #ifndef CCRAPIBASE_H
       
    21 #define CCRAPIBASE_H
       
    22 
       
    23 // INCLUDES
       
    24 #include <e32base.h>
       
    25 
       
    26 // CONSTANTS
       
    27 // None
       
    28 
       
    29 // MACROS
       
    30 // None
       
    31 
       
    32 // DATA TYPES
       
    33 // None
       
    34 
       
    35 // FORWARD DECLARATIONS
       
    36 class CCRServerHandleSingleton;
       
    37 
       
    38 // CLASS DECLARATION
       
    39 
       
    40 /**
       
    41 *  General client api base class that all API classes in 
       
    42 *  common recording engine API implementations need to inherit.
       
    43 *
       
    44 *  @lib CommonRecordingEngineClient.lib
       
    45 *  @since Series 60 3.0
       
    46 */
       
    47 NONSHARABLE_CLASS( CCRApiBase ) : public CBase
       
    48     {
       
    49 
       
    50 protected: // Constructors and destructor
       
    51 
       
    52     /**
       
    53     * C++ default constructor.
       
    54     */
       
    55     CCRApiBase();
       
    56 
       
    57     /**
       
    58     * Destructor.
       
    59     * @return None.
       
    60     */
       
    61     virtual ~CCRApiBase();
       
    62 
       
    63     /**
       
    64     * Symbian 2nd phase constructor can leave.
       
    65     */
       
    66     void BaseConstructL();
       
    67 
       
    68 protected: // data
       
    69 
       
    70     CCRServerHandleSingleton* iSingleton;
       
    71     
       
    72     };
       
    73 
       
    74 #endif // CCRAPIBASE_H
       
    75 
       
    76 // End of File