diff -r 000000000000 -r 95b198f216e5 omadrm/drmengine/roap/inc/MeteringReportResp.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/omadrm/drmengine/roap/inc/MeteringReportResp.h Thu Dec 17 08:52:27 2009 +0200 @@ -0,0 +1,77 @@ +/* +* Copyright (c) 2007-2008 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: class representing OMA metering report response +* +*/ + + + +#ifndef METERINGRESP +#define METERINGRESP + +// INCLUDES +#include +#include "RoapMessage.h" + +namespace Roap +{ + +/** +* class representing OMA DRM metering report response +* +* @lib roaphandler.dll +* @since S60 v3.2 +*/ +NONSHARABLE_CLASS( CMeteringResp ) : public CRoapMessage + { + public: // Constructors and destructor + + /** + * Two-phased constructor. + */ + static CMeteringResp* NewL(); + + /** + * Destructor. + */ + virtual ~CMeteringResp(); + + private: + + /** + * C++ default constructor. + */ + CMeteringResp(); + + /** + * By default Symbian 2nd phase constructor is private. + */ + void ConstructL(); + + public: // Data + TRoapStatus iStatus; + TBuf8 iDeviceId; + TBuf8 iRiId; + HBufC8* iDeviceNonce; + HBufC8* iErrorUrl; + HBufC8* iSignature; + RPointerArray iCertificateChain; + RPointerArray iOcspResponse; + HBufC8* iPrUrl; + }; +} + +#endif // METERINGRESP + +// End of File