phoneapp/Blacklist/inc/CPhoneAnimDll.h
changeset 0 5f000ab63145
equal deleted inserted replaced
-1:000000000000 0:5f000ab63145
       
     1 /*
       
     2 * Copyright (c) 2002-2003 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:  It defines factory class for blacklist clearing plug-in.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef CPHONEANIMDLL_H
       
    21 #define CPHONEANIMDLL_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include    <e32std.h>             
       
    25 #include    <w32adll.h>            
       
    26 
       
    27 // CLASS DECLARATION
       
    28 
       
    29 /** 
       
    30 * Animation plug-in.
       
    31 *
       
    32 * @since 2.0 
       
    33 */
       
    34 class CPhoneAnimDll 
       
    35     : public CAnimDll
       
    36     {
       
    37     public: // From base classes
       
    38         
       
    39         /** 
       
    40         * From CAnimDll, creates an instance of requested plugin.
       
    41         *
       
    42         * @return instance of animation service.
       
    43         */
       
    44         virtual CAnim* CreateInstanceL( TInt aType );
       
    45 
       
    46     };
       
    47 
       
    48 /** 
       
    49 * Creates an instance of CPhoneAnimDll. 
       
    50 * Factory function. 
       
    51 *
       
    52 * @since 1.0
       
    53 * @return instance of anim dll.
       
    54 */
       
    55 IMPORT_C CAnimDll* CreateCAnimDllL();
       
    56 
       
    57 #endif // CPHONEANIMDLL_H
       
    58 
       
    59 // End of File