engine/collectionframework/thumbnailcreator/inc/glxtnfileinfo.h
changeset 71 27f2d7aec52a
parent 69 45459746d5e8
child 72 0a8e959402e5
--- a/engine/collectionframework/thumbnailcreator/inc/glxtnfileinfo.h	Mon Sep 27 15:13:20 2010 +0530
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,88 +0,0 @@
-/*
-* Copyright (c) 2008-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:   Definition of CGlxtnFileInfo
-*
-*/
-
-
-
-/**
- * @internal reviewed 30/07/2007 by Simon Brooks
- */
-
-#ifndef C_GLXTNFILEINFO_H
-#define C_GLXTNFILEINFO_H
-
-#include <e32base.h>
-
-/**
- * Object holding information about a file to be thumbnailed.
- *
- * @author Dan Rhodes
- * @ingroup glx_thumbnail_creator
- */
-class CGlxtnFileInfo : public CBase
-    {
-public:
-	inline CGlxtnFileInfo();
-    inline	~CGlxtnFileInfo();
-
-    /**
-    * Copy info from one object to another.
-    */
-    inline void CopyInfoL(CGlxtnFileInfo& aInfo);
-
-    /**
-    * Get the full path to the media file.
-    * @return Media file path.
-    */
-    inline const TDesC& FilePath() const;
-
-    /**
-    * Set the full path to the media file.
-    * @param aPath Media file path (takes ownership).
-    */
-    inline void SetFilePath(HBufC* aPath);
-
-    /**
-    * Set the full path to the media file.
-    * @param aPath Media file path.
-    */
-    inline void SetFilePathL(const TDesC& aPath);
-
-    /**
-    * Set the full path to the media file.
-    * @param aIsVideo Set to true if the file is a video.
-    * @param aIsProtected Set to true if the file is DRM protected.
-    */
-    void IdentifyFileL(TBool& aIsVideo, TBool& aIsProtected);
-
-public:
-    /** Size of the media file */
-    TInt iFileSize;
-    /** Last modified time of the media file */
-    TTime iFileTime;
-    /** True if the thumbnail is temporary and should not be stored */
-    TBool iTemporary;
-    TBool iIsVideo;
-    TBool iIsProtected;
-
-private:
-    /** Full path of the media file */
-    HBufC* iFilePath;
-    };
-
-#include "glxtnfileinfo.inl"
-   
-#endif // C_GLXTNFILEINFO_H