svgtopt/SVG/SVGImpl/inc/SVGRelToAbsPath.h
changeset 46 88edb906c587
equal deleted inserted replaced
-1:000000000000 46:88edb906c587
       
     1 /*
       
     2 * Copyright (c) 2003 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:  SVG Implementation header file
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __TSVGRELTOABSPATH_H__
       
    20 #define __TSVGRELTOABSPATH_H__
       
    21 
       
    22 #include <e32std.h>
       
    23 
       
    24 
       
    25 /**
       
    26  * Class description
       
    27  *
       
    28  *  Converts relative paths to absolute paths
       
    29  *  
       
    30  */
       
    31 class TSvgRelToAbsPath
       
    32     {
       
    33     public:
       
    34 
       
    35 
       
    36         /**
       
    37          * Need method description
       
    38          *
       
    39          * @since 1.0
       
    40          * @param 
       
    41          * @return
       
    42          */
       
    43         static TInt GetFullPath( TParse& aParse,
       
    44                                  const TText8* upath,
       
    45                                  RFs& aSession,
       
    46                                  TDes* aFileName );
       
    47 
       
    48 
       
    49         /**
       
    50          * Need method description
       
    51          *
       
    52          * @since 1.0
       
    53          * @param 
       
    54          * @return
       
    55          */
       
    56         static TInt GetFullFile( TFileName& aName,
       
    57                                  const TText8* upath,
       
    58                                  RFs& aSession );
       
    59     };
       
    60 
       
    61 #endif // __TStringTokenizer_H__