helix_ren/helix_stub/ThumbnailAPI/src/hxtnutil.cpp
changeset 0 d7e778ce6e8e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/helix_ren/helix_stub/ThumbnailAPI/src/hxtnutil.cpp	Mon Jan 18 20:31:16 2010 +0200
@@ -0,0 +1,69 @@
+/*
+* 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: 
+*
+*/
+
+
+// symbian includes
+#include <E32Base.h>
+#include <e32std.h>
+
+#include "hxtnutil.h"
+
+
+CHXThumbnailUtility::CHXThumbnailUtility()    
+{
+// do nothing
+
+}
+
+CHXThumbnailUtility::~CHXThumbnailUtility()
+{
+    //do nothing   
+}
+
+CHXThumbnailUtility* CHXThumbnailUtility::NewL(MHXThumbnailUtilityImplObserver& /*aObserver*/)
+{
+return NULL;  
+}
+
+void CHXThumbnailUtility::ConstructL(MHXThumbnailUtilityImplObserver& /*aObserver*/)
+{
+     User::Leave(KErrNotSupported);
+}
+
+void CHXThumbnailUtility::OpenFileL(const RFile& /*aFileHandle*/, TUint /*uStartPositonMS*/)
+{
+  User::Leave(KErrNotSupported);
+}
+
+void CHXThumbnailUtility::CancelThumb()
+{
+   //do nothing   
+}
+
+TInt CHXThumbnailUtility::GetMetaDataCount(TUint& /*aCount*/)
+{
+    return 0;              
+}
+
+
+TInt CHXThumbnailUtility::GetMetaDataAt(TUint /*aIndex*/,
+             HXMetaDataKeys::EHXMetaDataId& /*id*/, HBufC*& /*pDes*/)
+{
+  return KErrNotSupported ;
+}
+
+