presetserver/include/psutils.h
changeset 0 09774dfdd46b
equal deleted inserted replaced
-1:000000000000 0:09774dfdd46b
       
     1 /*
       
     2 * Copyright (c) 2007-2007 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:  Common utility methods.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef PSUTILS_H
       
    20 #define PSUTILS_H
       
    21 
       
    22 #include <f32file.h>
       
    23 #include <pathinfo.h>
       
    24 
       
    25 #include "psdebug.h"
       
    26 
       
    27 /**
       
    28  * Static class that provides common utility methods.
       
    29  */
       
    30 class PSUtils
       
    31     {
       
    32 
       
    33 public:
       
    34 
       
    35     /**
       
    36      * Gets the full file name and path to the preset database file.
       
    37      *
       
    38      * @param   aFullName       On return, contains the full file name and path
       
    39      *                          to the database file.
       
    40      */
       
    41     inline static void GetDatabaseFullNameL( TFileName& aFullName );
       
    42 
       
    43     };
       
    44     
       
    45 #include "psutils.inl"
       
    46 
       
    47 #endif // PSUTILS_H