bubblesortnotify.h

来自「symbian开发得基础用书」· C头文件 代码 · 共 23 行

H
23
字号
// Copyright (c) 2006 Nokia Corporation.

#ifndef __BUBBLESORTNOTIFY_H__
#define __BUBBLESORTNOTIFY_H__

class MBubbleSortNotify 
{
public:
/*!
  @function ReadChunk

  @discussion Notifies caller of read of all data.  
              Data is contain in aData (or NULL if error)
              Caller is responsible for deleting aData
  */
    virtual void SortComplete(TInt aError) = 0;
};

#endif // __BUBBLESORTNOTIFY_H__

// End of file

⌨️ 快捷键说明

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