Welcome to mirror list, hosted at ThFree Co, Russian Federation.

iterator.hpp « std - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb7436ce6fc7de4094a4112cbd4b61f44c93737c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once
#include "common_defines.hpp"

#ifdef new
#undef new
#endif

#include <iterator>

using std::back_inserter;
using std::distance;
using std::iterator_traits;
using std::istream_iterator;
using std::insert_iterator;
using std::back_insert_iterator;

#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif