MSenHostletResponse.h

Go to the documentation of this file.
00001 /*
00002 * =========================================================================
00003 *  Name        : MSenHostletResponse.h
00004 *  Part of     : Web Services
00005 *  Description : 
00006 *  Version     : 
00007 *
00008 *  Copyright © 2002-2005 Nokia. All rights reserved.
00009 *  This material, including documentation and any related 
00010 *  computer programs, is protected by copyright controlled by 
00011 *  Nokia. All rights are reserved. Copying, including 
00012 *  reproducing, storing, adapting or translating, any 
00013 *  or all of this material requires the prior written consent of 
00014 *  Nokia. This material also contains confidential 
00015 *  information which may not be disclosed to others without the 
00016 *  prior written consent of Nokia.
00017 * ==============================================================================
00018 */
00019 
00020 #ifndef MSEN_HOSTLET_RESPONSE_H
00021 #define MSEN_HOSTLET_RESPONSE_H
00022 
00023 #include <e32base.h>
00024 
00025 // FORWARD DECLARE
00026 class MSenProperties;
00027 class MSenMessage;
00028 
00029 
00030 class MSenHostletResponse
00031     {
00032     public:
00044         virtual void SetResponseUtf8L(const TDesC8& aResponseUtf8, 
00045                                       const TInt aResponseCode = KErrNone, 
00046                                       MSenProperties* aResponseProperties = NULL,
00047                                       MSenMessage* apMessage = NULL) = 0;
00048         
00053         virtual TInt RequestId() const = 0;
00054         
00059         virtual TPtrC8 ResponseUtf8() = 0;
00060 
00065         virtual TInt ResponseCode() const = 0;
00066         
00070         virtual MSenProperties* ResponseProperties() = 0;
00071     };
00072 
00073 #endif // MSEN_HOSTLET_RESPONSE_H

Copyright © Nokia Corporation 2001-2007
Back to top