⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 serverdll.h

📁 Animation Client/Server Symbian 程序.
💻 H
字号:
/*
* ==============================================================================
*  Name        : serverdll.h
*  Part of     : Animation example
*  Interface   :
*  Description :
*  Version     :
*
*  Copyright (c) 2004 - 2006 Nokia Corporation.
*  This material, including documentation and any related
*  computer programs, is protected by copyright controlled by
*  Nokia Corporation.
* ==============================================================================
*/

#ifndef __SERVERDLL_H__
#define __SERVERDLL_H__

// INCLUDES
#include <w32adll.h>

// CLASS DECLARATION

/**
* CServerDll.
* An instance of CServerDll is a 'factory' object which creates a new
* instance of CAnim
*/
class CServerDll : public CAnimDll
    {
    public: // Constructor

        /**
        * CServerDll.
        * Construct an Animation Server dll
        */
        CServerDll();

        // Public destructor not created as this class does not own any data

    public: // From CAnimDll

        /**
        * CreateInstanceL.
        * Create an instance of the Animation Server image aType.
        * @param aType KAnimationSquare implies "construct a bouncing square"
        */
        IMPORT_C CAnim* CreateInstanceL( TInt aType );

    };

#endif // __SERVERDLL_H__

// End of File

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -