BubbleSortNotify.h
Upload User: laixiong
Upload Date: 2007-03-11
Package Size: 2994k
Code Size: 0k
Category:

Symbian

Development Platform:

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