00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef __CPbkIdleFinder_H__
00023 #define __CPbkIdleFinder_H__
00024
00025
00026 #include <e32base.h>
00027
00028
00029 class CIdleFinder;
00030 class CContactItemFieldDef;
00031 class CContactIdArray;
00032
00033
00034
00039 class CPbkIdleFinder : public CBase
00040 {
00041 public:
00051 CPbkIdleFinder(CIdleFinder* aFinder, CContactItemFieldDef* aFieldDef);
00052
00056 ~CPbkIdleFinder();
00057
00058 public:
00064 IMPORT_C TBool IsComplete() const;
00065
00071 IMPORT_C CContactIdArray* TakeContactIds();
00072
00078 IMPORT_C TInt Error() const;
00079
00080 public:
00086 IMPORT_C CIdleFinder* IdleFinder() const;
00087
00094 IMPORT_C CContactItemFieldDef* FieldDef() const;
00095
00096 private:
00098 CIdleFinder* iFinder;
00100 CContactItemFieldDef* iFieldDef;
00101 };
00102
00103
00104 #endif // __CPbkIdleFinder_H__
00105
00106