00001 /* 00002 * ============================================================================== 00003 * Name : MCLFModifiableItem.h 00004 * Part of : Content Listing Framework 00005 * Interface : SDK, Content Listing Framework API 00006 * Description : 00007 * Version : 00008 * 00009 * Copyright © 2002-2004 Nokia. All rights reserved. 00010 * This material, including documentation and any related 00011 * computer programs, is protected by copyright controlled by 00012 * Nokia. All rights are reserved. Copying, including 00013 * reproducing, storing, adapting or translating, any 00014 * or all of this material requires the prior written consent of 00015 * Nokia. This material also contains confidential 00016 * information which may not be disclosed to others without the 00017 * prior written consent of Nokia. 00018 * ============================================================================== 00019 */ 00020 00021 00022 #ifndef MCLFMODIFIABLEITEM_H 00023 #define MCLFMODIFIABLEITEM_H 00024 00025 // INCLUDES 00026 #include <MCLFItem.h> 00027 00028 // FORWARD DECLARATIONS 00029 class MCLFModifiableItemExt; 00030 00031 // CLASS DECLARATION 00032 00055 class MCLFModifiableItem : public MCLFItem 00056 { 00057 public: // Destructor 00061 virtual ~MCLFModifiableItem() {} 00062 00063 public: // New functions 00064 00071 virtual void AddFieldL( TCLFFieldId aFieldId, 00072 const TDesC& aValue ) = 0; 00073 00080 virtual void AddFieldL( TCLFFieldId aFieldId, 00081 TInt32 aValue ) = 0; 00082 00089 virtual void AddFieldL( TCLFFieldId aFieldId, 00090 const TTime& aValue ) = 0; 00091 00092 private: // Extension interface 00093 00097 virtual MCLFModifiableItemExt* ModifiableItemExtension() { return NULL; } 00098 00099 }; 00100 00101 // MCLFMODIFIABLEITEM_H 00102 #endif 00103 00104 // End of File