helix_ren/helix_stub/ThumbnailAPI/src/hxtnutil.cpp
changeset 0 d7e778ce6e8e
equal deleted inserted replaced
-1:000000000000 0:d7e778ce6e8e
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // symbian includes
       
    20 #include <E32Base.h>
       
    21 #include <e32std.h>
       
    22 
       
    23 #include "hxtnutil.h"
       
    24 
       
    25 
       
    26 CHXThumbnailUtility::CHXThumbnailUtility()    
       
    27 {
       
    28 // do nothing
       
    29 
       
    30 }
       
    31 
       
    32 CHXThumbnailUtility::~CHXThumbnailUtility()
       
    33 {
       
    34     //do nothing   
       
    35 }
       
    36 
       
    37 CHXThumbnailUtility* CHXThumbnailUtility::NewL(MHXThumbnailUtilityImplObserver& /*aObserver*/)
       
    38 {
       
    39 return NULL;  
       
    40 }
       
    41 
       
    42 void CHXThumbnailUtility::ConstructL(MHXThumbnailUtilityImplObserver& /*aObserver*/)
       
    43 {
       
    44      User::Leave(KErrNotSupported);
       
    45 }
       
    46 
       
    47 void CHXThumbnailUtility::OpenFileL(const RFile& /*aFileHandle*/, TUint /*uStartPositonMS*/)
       
    48 {
       
    49   User::Leave(KErrNotSupported);
       
    50 }
       
    51 
       
    52 void CHXThumbnailUtility::CancelThumb()
       
    53 {
       
    54    //do nothing   
       
    55 }
       
    56 
       
    57 TInt CHXThumbnailUtility::GetMetaDataCount(TUint& /*aCount*/)
       
    58 {
       
    59     return 0;              
       
    60 }
       
    61 
       
    62 
       
    63 TInt CHXThumbnailUtility::GetMetaDataAt(TUint /*aIndex*/,
       
    64              HXMetaDataKeys::EHXMetaDataId& /*id*/, HBufC*& /*pDes*/)
       
    65 {
       
    66   return KErrNotSupported ;
       
    67 }
       
    68 
       
    69