📄 project.h
字号:
/*
Copyright (c) 2003-2006, Penrillian Ltd. All rights reserved
Web: www.penrillian.com
*/
#ifndef __project_h__
#define __project_h__
#include <e32std.h>
#include "LoggingSupport.h"
/**
Push the parameter onto the cleanup stack. Answers it.
(Useful if you want to use a creation L function as an LC one.
*/
template <class T> T* CleanupL( T* aT )
{ CleanupStack::PushL( aT ); return aT; }
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -