omads/omadsextensions/adapters/mediads/inc/playlistitem.h
branchRCL_3
changeset 25 4f0867e42d62
parent 24 8e7494275d3a
child 26 3e6957da2ff8
--- a/omads/omadsextensions/adapters/mediads/inc/playlistitem.h	Tue Aug 31 15:05:37 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,65 +0,0 @@
-/*
-* Copyright (c) 2009 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:  Part of SyncML Data Synchronization Plug In Adapter
-*
-*/
-
-
-#ifndef PLAYLISTITEM_H_
-#define PLAYLISTITEM_H_
-
-#include <e32base.h>
-#include <s32mem.h>
-#include <BADESCA.H>
-
-class CPlaylistItem : public CBase
-    {
-public:
-    static CPlaylistItem* NewLC();
-    ~CPlaylistItem();
-    
-    void SetId( TInt aId );
-    TInt Id() const;
-    
-    void SetTitleL( const TDesC& aTitle );
-    const TDesC& Title() const;
-    
-    void SetUrlL( const TDesC& aUrl );
-    const TDesC& Url() const;
-    
-    void AddItemL( const TDesC& aSongUri );
-    TInt ItemCount() const;
-    TPtrC16 ItemAt( TInt aIndex ) const;
-    TInt FindItem( const TDesC16& aPtr, TInt& aPos, TKeyCmpText aTextComparisonType=ECmpFolded ) const;
-    
-    void ExportL( RBufWriteStream& aStream ) const;
-    void ImportL( const TDesC& aBuffer );
-    
-private:
-    CPlaylistItem();
-    void ConstructL();
-    
-private:
-    
-    TInt ReadNextLine( const TDesC& aBuffer, TPtrC& aLine );
-    
-private:
-    TInt iId;
-    HBufC* iTitle;
-    HBufC* iUrl;
-
-    CDesCArrayFlat* iDescArray;
-    };
-
-#endif /* PLAYLISTITEM_H_ */