testexecfw/useremul/engine/WSServer/inc/serverdll.h
changeset 0 3e07fef1e154
equal deleted inserted replaced
-1:000000000000 0:3e07fef1e154
       
     1 /*------------------------------------------------------------------
       
     2  -
       
     3  * Software Name : UserEmulator
       
     4  * Version       : v4.2.1309
       
     5  * 
       
     6  * Copyright (c) 2009 France Telecom. All rights reserved.
       
     7  * This software is distributed under the License 
       
     8  * "Eclipse Public License - v 1.0" the text of which is available
       
     9  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    10  *
       
    11  * Initial Contributors:
       
    12  * France Telecom 
       
    13  *
       
    14  * Contributors:
       
    15  *------------------------------------------------------------------
       
    16  -
       
    17  * File Name: serverdll.h
       
    18  * 
       
    19  * Created: 13/08/2009
       
    20  * Author(s): Marcell Kiss
       
    21  *   
       
    22  * Description:
       
    23  * Declares Anim dll server side class
       
    24  *------------------------------------------------------------------
       
    25  -
       
    26  *
       
    27  */
       
    28 
       
    29 #ifndef SERVERDLL_H__
       
    30 #define SERVERDLL_H__
       
    31 
       
    32 // System Includes
       
    33 #include <w32adll.h>
       
    34 
       
    35 // Class Declaration
       
    36 
       
    37 /**
       
    38  *  Implements Anim dll server side class.
       
    39  *  Creates CServerCtrl object
       
    40  */
       
    41 class CServerDll : public CAnimDll
       
    42     {
       
    43     public:
       
    44         /**
       
    45         * Constructor
       
    46         */
       
    47         CServerDll();
       
    48 
       
    49     public:
       
    50         /**
       
    51         * Creator function
       
    52         * @param aType not used
       
    53         */
       
    54         IMPORT_C CAnim* CreateInstanceL( TInt aType );
       
    55 
       
    56     };
       
    57 #endif // SERVERDLL_H__
       
    58 
       
    59 // End of File