cdlcompilertoolkit/inc/CdlTkPriv.h
changeset 0 f58d6ec98e88
equal deleted inserted replaced
-1:000000000000 0:f58d6ec98e88
       
     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 #ifndef CDLTKPRIV_H
       
    18 #define CDLTKPRIV_H
       
    19 
       
    20 #include "CdlCompilerToolkit/CdlTkUtil.h"
       
    21 
       
    22 namespace CdlCompilerToolkit {
       
    23 
       
    24 const std::string KWhiteSpace(" \t\r\n");
       
    25 const std::string KSpace(" ");
       
    26 const std::string KEmptyString("");
       
    27 const std::string KSectionBoundary("%%");
       
    28 const std::string KCommentStart("//");
       
    29 const std::string KCrlf("\r\n");
       
    30 const std::string KCpp("0123456789_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz");
       
    31 const std::string KCommonHeader(".common.h");
       
    32 
       
    33 const std::string KType("aType");
       
    34 const std::string KName("aName");
       
    35 const std::string KEqualsSign("=");
       
    36 
       
    37 const int KTypeSize = KType.size();
       
    38 
       
    39 const std::string KPackageContentsApi("contents");
       
    40 
       
    41 const std::string KDllInstHeader("dllinstances.hrh");
       
    42 
       
    43 }	// end of namespace CdlCompilerToolkit
       
    44 
       
    45 #endif