camerawrapperexampleapplication.h

来自「This Symbian C++ code example demonstrat」· C头文件 代码 · 共 35 行

H
35
字号
/*
 * Copyright (c) 2009 Nokia Corporation.
 */

#ifndef __CAMERAWRAPPEREXAMPLEAPPLICATION_H__
#define __CAMERAWRAPPEREXAMPLEAPPLICATION_H__

// INCLUDES
#include <aknapp.h>
#include "CameraWrapperExample.hrh"

// UID for the application;
// this should correspond to the uid defined in the mmp file
const TUid KUidCameraWrapperExampleApp =
    {
    _UID3
    };

// CLASS DECLARATION

class CCameraWrapperExampleApplication : public CAknApplication
    {
    public:
        // Functions from base classes
        TUid AppDllUid () const;
    
    protected:
        // Functions from base classes
        CApaDocument* CreateDocumentL ();
    };

#endif // __CAMERAWRAPPEREXAMPLEAPPLICATION_H__

// End of File

⌨️ 快捷键说明

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