diff -r 6a20128ce557 -r ebfee66fde93 mmsengine/mmsmessage/inc/mmsmmboxflags.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mmsengine/mmsmessage/inc/mmsmmboxflags.h Fri Jun 04 10:25:39 2010 +0100 @@ -0,0 +1,144 @@ +/* +* Copyright (c) 2003 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: Structure to hold MMS encapsulation 1.1 version +* previoulsy-sent-by and previously-sent-date information +* +*/ + + + + +#ifndef MMSMMBOXFLAGS_H +#define MMSMMBOXFLAGS_H + +// INCLUDES +#include + +// CONSTANTS + +// MACROS + +// DATA TYPES + +// FUNCTION PROTOTYPES + +// FORWARD DECLARATIONS +class RMsvReadStream; +class RMsvWriteStream; + +// CLASS DECLARATION + +/** +* Object for storing previously-sent-by objects. +* +* @lib mmsutil.lib +* @since 2.6 +*/ +class CMmsMMBoxFlags : public CBase + { + public: // Constructors and destructor + + /** + * C++ default constructor. + */ + CMmsMMBoxFlags(); + + /** + * Destructor. + */ + virtual ~CMmsMMBoxFlags(); + + public: // New functions + + /** + * Internalize. + * @since 2.6 + * @param aStream opened read stream + */ + void InternalizeL( RMsvReadStream& aStream ); + + /** + * Externalize. + * @since 2.6 + * @param aStream opened write stream + */ + void ExternalizeL( RMsvWriteStream& aStream ) const; + + /** + * Operation token accessor. + * @since 2.6 + * @return operation token for this keyword + */ + inline TInt32 Token() const; + + /** + * Order mutator. + * @since 2.6 + * @param sets token to be Add/Delete/Filter + */ + inline void SetToken( TInt32 aToken ); + + /** + * Keyword accessor. + * @since 2.6 + * @return Keyword. + */ + inline TPtrC Keyword() const; + + /** + * Keyword mutator. + * @since 2.6 + * @param aKeyword + */ + void SetKeywordL( const TDesC& aKeyword ); + + /* + * How much room this needs on disk + * @since 2.1 + * @return amount of bytes the data in this item needs + */ + TInt Size() const; + + public: // Functions from base classes + + protected: // New functions + + protected: // Functions from base classes + + private: + + public: // Data + + protected: // Data + + private: // Data + + // Operation for the flag + TInt32 iOperationToken; // Add/Remove/Filter + // the address of the sender + HBufC* iKeyword; + + public: // Friend classes + + protected: // Friend classes + + private: // Friend classes + + }; + +#include "mmsmmboxflags.inl" + +#endif // MMSMMBOXFLAGS_H + +// End of File