?? activebubblesorter.h
字號:
// Copyright (c) 2006 Nokia Corporation.
#ifndef __ACTIVEBUBBLESORTER_H__
#define __ACTIVEBUBBLESORTER_H__
#include <e32base.h>
#include <f32file.h>
class CActiveBubbleSorter : public CActive
{
public: // Construction/destruction
static CActiveBubbleSorter* NewL();
~CActiveBubbleSorter();
protected: // from CActive
// from CActive
void DoCancel();
void RunL();
TInt RunError(TInt aError);
private: // Construction
CActiveBubbleSorter();
void ConstructL();
public: // Public functions
void StartL();
private: // Internal functions
void ReadNumbersFromFileL();
void WriteNumbersToFileL();
private: // data
};
#endif // __ACTIVEBUBBLESORTER_H__
// End of file
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -