homescreensrv_plat/xcfw_api/inc/gecoobjectbase.h
changeset 0 79c6a41cd166
equal deleted inserted replaced
-1:000000000000 0:79c6a41cd166
       
     1 /*
       
     2 * Copyright (c) 2002-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:  Base content object parser interface definition
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef CGECOOBJECTBASE_H
       
    21 #define CGECOOBJECTBASE_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32base.h>
       
    25 
       
    26 
       
    27 // CLASS DECLARATION
       
    28 /**
       
    29 *  Generic Content Object Base Class
       
    30 *  Base class that all content objects derive from. 
       
    31 *
       
    32 *  @lib XCFW.lib
       
    33 *  @since Series 60 3.1
       
    34 */
       
    35 class CGECOObjectBase :     public CBase
       
    36     {
       
    37     public: // New functions
       
    38         
       
    39         /**
       
    40         * Returns Object type identifier for this object
       
    41         * @since Series 60 3.1
       
    42         * @return Object identifier
       
    43         */
       
    44         virtual const TDesC& TypeIdentifier() = 0;
       
    45     };
       
    46 
       
    47 #endif      // CXCFWOBJECTPARSER_H   
       
    48             
       
    49 // End of File