diff -r 000000000000 -r b497e44ab2fc syncmlfw/common/obex/obexclient/inc/Obexsearcherobserver.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/syncmlfw/common/obex/obexclient/inc/Obexsearcherobserver.h Thu Dec 17 09:07:52 2009 +0200 @@ -0,0 +1,65 @@ +/* +* Copyright (c) 2002 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: ObexSearcherObserver +* +*/ + + +#ifndef MObexSearcherObserver_H +#define MObexSearcherObserver_H + +// INCLUDES +#include + +// FORWARD DECLARATIONS +class TBTDeviceResponseParams; +class TIrdaSockAddr; + +// CLASS DECLARATION + +class MObexSearcherObserver + { + public: // New functions + + /** + * Notify device found + */ + virtual void HandleDeviceFoundL() = 0; + + /** + * Notify device search error + */ + virtual void HandleDeviceErrorL( TInt aErr ) = 0; + + /** + * Notify service found + */ + virtual void HandleServiceFoundL() = 0; + + /** + * Notify service search error + */ + virtual void HandleServiceErrorL( TInt aErr ) = 0; + + ~MObexSearcherObserver() {}; + + protected: + + MObexSearcherObserver() {}; + + }; + +#endif // MObexSearcherObserver_H + +// End of File