📄 btservicesdocument.h
字号:
// BtServicesDocument.h
//
// Copyright (c) 2003 Symbian Ltd. All rights reserved.
//
#ifndef BTSERVICESDOCUMENT_H_
#define BTSERVICESDOCUMENT_H_
#include <eikapp.h>
#include <qikdocument.h>
class CBtServicesEng;
/**
The main application class. It defines the properties
of the application, specifically the UID, and it is responsible
for creating (and destroying) the document.
*/
class CBtServicesApplication : public CEikApplication
{
private:
// defined in CEikApplication
CApaDocument* CreateDocumentL();
// defined in CApaApplication
TUid AppDllUid() const;
};
/**
The document represents the data model. It creates (and destroys)
the App UI and the main engine.
*/
class CBtServicesDocument : public CQikDocument
{
public:
CBtServicesDocument(CEikApplication& aApp);
~CBtServicesDocument();
private:
// defined in CEikDocument
CEikAppUi* CreateAppUiL();
private:
CBtServicesEng* iEngine;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -