inc/glxlogger.h
branchRCL_3
changeset 59 8e5f6eea9c9f
equal deleted inserted replaced
57:ea65f74e6de4 59:8e5f6eea9c9f
       
     1 /*
       
     2 * Copyright (c) 2008-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:   Logging utility for MC Photos
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef T_GLXLOGGER_H
       
    21 #define T_GLXLOGGER_H
       
    22 
       
    23 // CLASS HEADER
       
    24 #include "glxlogger.h"
       
    25 
       
    26 // EXTERNAL INCLUDES
       
    27 #include <e32std.h>
       
    28 
       
    29 namespace GlxLogger
       
    30     {
       
    31     /**
       
    32      * Logging utility, writes the given log to a shared chunk if the chunk
       
    33      * exists or to RDebug if not.
       
    34      * Note! due to performance reasons only 8 bit descriptor allowed
       
    35      * @param The descriptor containing the format string. 
       
    36      * @param The arguments to append to the format string (ellipsis notation)
       
    37      */
       
    38     IMPORT_C void WriteFormat( TRefByValue<const TDesC8> aFmt, ... );
       
    39     }
       
    40 
       
    41 #endif // T_GLXLOGGER_H