20
|
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: 1 %
|
|
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 |
// Addr2line binary used.
|
|
29 |
//#define ADDR2LINE
|
|
30 |
|
|
31 |
#ifdef MEM_LEAK_CHECK
|
|
32 |
#define _CRTDBG_MAP_ALLOC
|
|
33 |
#include <stdlib.h>
|
|
34 |
#include <crtdbg.h>
|
|
35 |
#endif
|
|
36 |
|
|
37 |
#include <tchar.h>
|
|
38 |
#include <fstream> //ifstream,ofstream
|
|
39 |
#include <windows.h>
|
|
40 |
#include <string> //string
|
|
41 |
#include <vector> //string
|
|
42 |
#include <sstream> //stringstream
|
|
43 |
#include <iostream> // cout
|
|
44 |
#include <map> // map
|
|
45 |
#include <time.h> |