ccservices/cmsservices/bpas/inc/bpasobserver.h
changeset 0 e686773b3f54
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ccservices/cmsservices/bpas/inc/bpasobserver.h	Tue Feb 02 10:12:17 2010 +0200
@@ -0,0 +1,66 @@
+/*
+* Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:  Interface for handling PresenceInfos
+*
+*/
+
+
+
+#ifndef M_BPASOBSERVER_H
+#define M_BPASOBSERVER_H
+
+
+class CBPASInfo;
+
+
+/**
+ *  ?one_line_short_description
+ *
+ *  ?more_complete_description
+ *  @code
+ *   ?good_class_usage_example(s)
+ *  @endcode
+ *
+ *  @lib ?library
+ *  @since S60 v5.0
+ */
+class MBPASObserver 
+    {
+
+public:
+
+
+    /**
+     * BPAS calls this method as a response to
+     * asynchronous MBPAS::GiveInfoL
+     *
+     * @since S60 ?S60_version
+     * @param aInfos                [in] result array
+     *                              Ownership is not transferred
+     */
+    virtual void HandleInfosL( TInt aErrorCode, RPointerArray<CBPASInfo>& aInfos ) = 0;
+    
+    /**
+     * BPAS calls this method when new presence info is available for
+     * a previously subscribed  contact. aInfo must be pushed to cleanup
+     * before calling any leaving methods.
+     *
+     * @param aInfo resulted info, ownership is not transfered
+     */
+    virtual void HandleSubscribedInfoL(CBPASInfo* aInfo) = 0;
+    
+    };
+
+
+#endif // M_BPASOBSERVER_H