00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef FAVOURITES_HANDLE_H
00023 #define FAVOURITES_HANDLE_H
00024
00025
00026
00027 #include <e32base.h>
00028 #include <FavouritesSession.h>
00029
00030
00031
00035 class RFavouritesHandle
00036 {
00037
00038 public:
00039
00044 inline RFavouritesHandle();
00045
00051 IMPORT_C void Close();
00052
00053 public:
00054
00060 inline TInt Handle() const;
00061
00062 protected:
00063
00072 TInt Open
00073 (
00074 RFavouritesSession& aSess,
00075 TInt aFunction,
00076 const TIpcArgs& aArgs
00077 );
00078
00087 TInt Open
00088 (
00089 RFavouritesHandle& aHandle,
00090 TInt aFunction,
00091 const TIpcArgs& aArgs
00092 );
00093
00101 void SendReceive
00102 (
00103 TInt aFunction,
00104 const TIpcArgs& aArgs,
00105 TRequestStatus& aStatus
00106 ) const;
00107
00115 TInt SendReceive( TInt aFunction, const TIpcArgs& aArgs ) const;
00116
00123 TInt SendReceive( TInt aFunction ) const;
00124
00125 protected:
00126
00127 RFavouritesSession iSess;
00128 TInt iHandle;
00129
00130 };
00131
00132 #include <FavouritesHandle.inl>
00133
00134 #endif
00135
00136