blob: 3e8ec43e11d968748acf0310dd87135e3408956f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
* Copyright (c) 2010 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
#include <boost/foreach.hpp>
#undef foreach
#define foreach BOOST_FOREACH
#define reverse_foreach BOOST_REVERSE_FOREACH
|