BubbleSortNotify.h
上传用户:laixiong
上传日期:2007-03-11
资源大小:2994k
文件大小:0k
源码类别:

Symbian

开发平台:

C/C++

  1. // Copyright (c) 2006 Nokia Corporation.
  2. #ifndef __BUBBLESORTNOTIFY_H__
  3. #define __BUBBLESORTNOTIFY_H__
  4. class MBubbleSortNotify 
  5. {
  6. public:
  7. /*!
  8.   @function ReadChunk
  9.   @discussion Notifies caller of read of all data.  
  10.               Data is contain in aData (or NULL if error)
  11.               Caller is responsible for deleting aData
  12.   */
  13.     virtual void SortComplete(TInt aError) = 0;
  14. };
  15. #endif // __BUBBLESORTNOTIFY_H__
  16. // End of file