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