diff -r 08008ce8a6df -r bde600d88860 msgfw_pub/send_ui_api/inc/CMessageAddress.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/msgfw_pub/send_ui_api/inc/CMessageAddress.h Fri Jun 04 10:32:16 2010 +0100 @@ -0,0 +1,135 @@ +/* +* Copyright (c) 2002-2006 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: Encapsulates message real addressa and alias +* +*/ + + + +#ifndef C_MESSAGEADDRESS_H +#define C_MESSAGEADDRESS_H + +#include + +class CMessageAddressImpl; +class RWriteStream; +class RReadStream; + +/** + * Encapsulates message recipient real address and alias. + * + * @lib sendui + * @since S60 v3.0 + */ +class CMessageAddress : public CBase +{ +public: // Constructors and destructor + + /** + * Two-phased constructor. + */ + IMPORT_C static CMessageAddress* NewL(); + + /** + * Two-phased constructor. Leaves object to cleanup stack. + */ + IMPORT_C static CMessageAddress* NewLC(); + + /** + * Destructor. + */ + IMPORT_C virtual ~CMessageAddress(); + +public: // New functions + + /** + * Sets real address. + * + * @since Series 60 3.0 + * @param aAddress Real address. + * @return None. + */ + IMPORT_C void SetAddressL( const TDesC& aAddress ); + + /** + * Returns real address. + * + * @since Series 60 3.0 + * @return Real address. + */ + IMPORT_C const TPtrC Address() const; + + /** + * Sets alias for the real address. + * + * @since Series 60 3.0 + * @param aAlias Alias for the real address. + * @return None. + */ + IMPORT_C void SetAliasL( const TDesC& aAlias ); + + /** + * Returns alias for the address. + * + * @since Series 60 3.0 + * @return Alias for the real address. + */ + IMPORT_C const TPtrC Alias() const; + + /** + * Externalizes address data to a stream + * + * @since Series 60 3.2 + * @param aStream Destination stream + * @return None. + */ + IMPORT_C void ExternalizeL( RWriteStream& aStream ); + + /** + * Internalizes message data from a stream + * + * @since Series 60 3.2 + * @param Source stream + * @return None. + */ + IMPORT_C void InternalizeL( RReadStream& aStream ); + +private: + + /** + * C++ default constructor. + */ + CMessageAddress(); + + /** + * Symbian 2nd phase constructor. + */ + void ConstructL(); + +private: // Data + + /** + * Message address implementation. + * Own. + */ + CMessageAddressImpl* iMessageAddressImpl; + }; + +/** Address array */ + +typedef CArrayPtrFlat CMessageAddressArray; + +#endif // C_MESSAGEADDRESS_H + +// End of File