deletefilesapplication.h

来自「自己写的一个删除文件的源代码」· C头文件 代码 · 共 49 行

H
49
字号
/*
============================================================================
 Name        : DeleteFilesApplication.h
 Author      : 
 Version     :
 Copyright   : Your copyright notice
 Description : Main application class
============================================================================
*/

#ifndef __DELETEFILESAPPLICATION_H__
#define __DELETEFILESAPPLICATION_H__

// INCLUDES
#include <aknapp.h>

// CLASS DECLARATION

/**
* CDeleteFilesApplication application class.
* Provides factory to create concrete document object.
* An instance of CDeleteFilesApplication is the application part of the
* AVKON application framework for the DeleteFiles example application.
*/
class CDeleteFilesApplication : public CAknApplication
    {
    public: // Functions from base classes

        /**
        * From CApaApplication, AppDllUid.
        * @return Application's UID (KUidDeleteFilesApp).
        */
        TUid AppDllUid() const;

    protected: // Functions from base classes

        /**
        * From CApaApplication, CreateDocumentL.
        * Creates CDeleteFilesDocument document object. The returned
        * pointer in not owned by the CDeleteFilesApplication object.
        * @return A pointer to the created document object.
        */
        CApaDocument* CreateDocumentL();
    };

#endif // __DELETEFILESAPPLICATION_H__

// End of File

⌨️ 快捷键说明

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