performance.h
来自「《UIQ 3 The Complete Guide》书的源代码」· C头文件 代码 · 共 52 行
H
52 行
//
// Performance.h - Performance example
//
// Copyright (C) UIQ Technology AB, 2007
//
// This material is provided "as is" without any warranty to its performance or functionality.
// In no event shall UIQ Technology be liable for any damages whatsoever arising out of the
// use or inabilty to use this material.
//
#ifndef __PERFORMANCE_H__
#define __PERFORMANCE_H__
// THESE pragmas stop the compiler complaining that params to functions not being used in body
#ifdef __CW32__
#pragma warn_unusedarg off
#endif // __CW32__
#pragma warning(disable : 4100)
#include <eikenv.h>
#include <eikapp.h>
#include <eikdef.h>
#include <eikdoc.h>
#include <eikmenub.h>
#include <eikmenup.h>
#include <basched.h>
#include <coeutils.h>
#include <qikappui.h>
#include <qikdocument.h>
#include <qikapplication.h>
#include <QikScrollableContainer.h>
#include <eiklbm.h>
#include <eiktxlbm.h>
#include <eikclb.h>
#include <eikclbd.h>
/////////////////////////////////////////////////////////////////////////////////////////////
class CAppSpecificUi : public CQikAppUi
{
protected:
// From CEikAppUi
void ConstructL();
public:
// new methods
~CAppSpecificUi();
protected:
};
#endif // __PERFORMANCE_H__
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?