1 // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // 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
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #if !defined (__MENTACT_H__)
19 #if !defined (__E32BASE_H__)
24 class CMsgActive : public CActive
31 IMPORT_C ~CMsgActive();
33 IMPORT_C CMsgActive(TInt aPriority);
34 IMPORT_C void Queue(TRequestStatus& aStatus);
35 IMPORT_C void Complete(TInt aStatus);
36 IMPORT_C void DoCancel();
39 virtual void DoRunL()=0;
40 IMPORT_C virtual void DoComplete(TInt&);
42 TRequestStatus* iReport;