1.1 --- a/epoc32/include/cbioasyncwaiter.h Tue Mar 16 16:12:26 2010 +0000
1.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000
1.3 @@ -1,52 +0,0 @@
1.4 -// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 -// All rights reserved.
1.6 -// This component and the accompanying materials are made available
1.7 -// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
1.8 -// which accompanies this distribution, and is available
1.9 -// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
1.10 -//
1.11 -// Initial Contributors:
1.12 -// Nokia Corporation - initial contribution.
1.13 -//
1.14 -// Contributors:
1.15 -//
1.16 -// Description:
1.17 -//
1.18 -
1.19 -#ifndef __CBIOASYNCWAITER_H__
1.20 -#define __CBIOASYNCWAITER_H__
1.21 -
1.22 -#include <e32base.h>
1.23 -
1.24 -/**
1.25 -Utility class for waiting for asychronous requests.
1.26 -
1.27 -This class allows asynchronous requests to be made from synchronous
1.28 -objects. This object is used by passing its iStatus to an asynchronous
1.29 -request and then calling Start(). The result of the request can be
1.30 -obtained by calling the Result() method.
1.31 -
1.32 -@publishedAll
1.33 -@released
1.34 -*/
1.35 -class CBioAsyncWaiter : public CActive
1.36 - {
1.37 -public:
1.38 - IMPORT_C static CBioAsyncWaiter* NewLC();
1.39 - IMPORT_C ~CBioAsyncWaiter();
1.40 -
1.41 - IMPORT_C void StartAndWait();
1.42 - IMPORT_C TInt Result() const;
1.43 -
1.44 -private:
1.45 - CBioAsyncWaiter();
1.46 -
1.47 - // from CActive
1.48 - virtual void RunL();
1.49 - virtual void DoCancel();
1.50 -
1.51 -private:
1.52 - TInt iError;
1.53 - };
1.54 -
1.55 -#endif // __CBIOASYNCWAITER_H__