williamr@2: // Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). williamr@2: // All rights reserved. williamr@2: // This component and the accompanying materials are made available williamr@4: // under the terms of "Eclipse Public License v1.0" williamr@2: // which accompanies this distribution, and is available williamr@4: // at the URL "http://www.eclipse.org/legal/epl-v10.html". williamr@2: // williamr@2: // Initial Contributors: williamr@2: // Nokia Corporation - initial contribution. williamr@2: // williamr@2: // Contributors: williamr@2: // williamr@2: // Description: williamr@2: // TMSVSYSTEMPROGRES.H williamr@2: // williamr@2: // williamr@2: williamr@2: #ifndef __TMSVSYSTEMPROGRESS_H__ williamr@2: #define __TMSVSYSTEMPROGRESS_H__ williamr@2: williamr@2: #include williamr@2: williamr@2: const TUint KUIDMsgMsvSystemProgress = 0x1028308F; williamr@2: williamr@2: /** williamr@2: Progress information that is defined by and understood by the system as well as client MTM's williamr@2: williamr@2: @publishedAll williamr@2: @released williamr@2: */ williamr@2: class TMsvSystemProgress williamr@2: { williamr@2: public: williamr@2: IMPORT_C TMsvSystemProgress(); williamr@2: IMPORT_C TMsvSystemProgress(const TMsvSystemProgress& aSysProg); williamr@2: IMPORT_C TMsvSystemProgress& operator=(const TMsvSystemProgress& aSysProg); williamr@2: williamr@2: public: williamr@2: /** the version number of class */ williamr@2: const TInt iVersion; williamr@2: /** Operation error code.*/ williamr@2: TInt iErrorCode; williamr@2: /** the id of an entry in an operation*/ williamr@2: TMsvId iId; williamr@2: }; williamr@2: williamr@2: #endif // #define __TMSVSYSTEMPROGRESS_H__