1 /***************************************************************************
2  *  include/stxxl/bits/namespace.h
3  *
4  *  Part of the STXXL. See http://stxxl.sourceforge.net
5  *
6  *  Copyright (C) 2007 Roman Dementiev <dementiev@ira.uka.de>
7  *
8  *  Distributed under the Boost Software License, Version 1.0.
9  *  (See accompanying file LICENSE_1_0.txt or copy at
10  *  http://www.boost.org/LICENSE_1_0.txt)
11  **************************************************************************/
12 
13 #ifndef STXXL_NAMESPACE_HEADER
14 #define STXXL_NAMESPACE_HEADER
15 
16 #define STXXL_BEGIN_NAMESPACE namespace stxxl {
17 #define STXXL_END_NAMESPACE \
18     }
19 
20 #endif // !STXXL_NAMESPACE_HEADER
21