applayerprotocols/wappushsupport/inc/waplog.h
changeset 0 b16258d2340f
equal deleted inserted replaced
-1:000000000000 0:b16258d2340f
       
     1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // WAP Logging public header, defines the name of the 
       
    15 // file to use for WAP activity logging messages
       
    16 // 
       
    17 //
       
    18 
       
    19 #if !defined(__WAPLOG_H__)
       
    20 #define __WAPLOG_H__
       
    21 
       
    22 #if !defined(__E32STD_H__)
       
    23 #include <e32std.h>
       
    24 #endif
       
    25 
       
    26 #ifdef _DEBUG
       
    27 /**
       
    28 @publishedAll
       
    29 @deprecated
       
    30 */
       
    31 _LIT(KWapLogFileName,"WAPLog.html");
       
    32 #define __LOG_WAP_FILE_NAME KWapLogFileName
       
    33 #else
       
    34 #define __LOG_WAP_FILE_NAME
       
    35 #endif
       
    36 
       
    37 #endif