memana/analyzetoolclient/commandlineengine/internal/inc/stdafx.h
changeset 0 f0f2b8682603
equal deleted inserted replaced
-1:000000000000 0:f0f2b8682603
       
     1 /*
       
     2 * Copyright (c) 2008 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:  Include file for standard system include files,
       
    15 *                or project specific include files that are used frequently, but
       
    16 *                are changed infrequently.
       
    17 *  Version     : %version: % 
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 #pragma once
       
    23 
       
    24 // MemoryLeak checking function.
       
    25 // Note! Do not comming in svn with this flag enabled.
       
    26 //#define MEM_LEAK_CHECK
       
    27 
       
    28 // Compile with HTI functions.
       
    29 //#define HTI_SUPPORT
       
    30 
       
    31 // Addr2line binary used.
       
    32 //#define ADDR2LINE
       
    33 
       
    34 #ifdef MEM_LEAK_CHECK
       
    35 #define _CRTDBG_MAP_ALLOC
       
    36 #include <stdlib.h>
       
    37 #include <crtdbg.h>
       
    38 #endif
       
    39 
       
    40 #include <tchar.h>
       
    41 #include <fstream>   //ifstream,ofstream
       
    42 #include <windows.h>
       
    43 #include <string>    //string
       
    44 #include <vector>    //string
       
    45 #include <sstream>   //stringstream
       
    46 #include <iostream>  // cout
       
    47 #include <map> // map
       
    48 #include <time.h>