Stxxl  1.3.2
settings.h
Go to the documentation of this file.
1 /***************************************************************************
2  * include/stxxl/bits/common/settings.h
3  *
4  * Part of the STXXL. See http://stxxl.sourceforge.net
5  *
6  * Copyright (C) 2007 Johannes Singler <[email protected]>
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 
18 #ifndef STXXL_SETTINGS_HEADER
19 #define STXXL_SETTINGS_HEADER
20 
21 #include <stxxl/bits/namespace.h>
22 
23 
24 __STXXL_BEGIN_NAMESPACE
25 
26 template <typename must_be_int = int>
27 class settings
28 {
29 public:
30  static bool native_merge;
31 };
32 
33 template <typename must_be_int>
34 bool settings<must_be_int>::native_merge = true;
35 
36 typedef settings<> SETTINGS;
37 
38 __STXXL_END_NAMESPACE
39 
40 #endif // !STXXL_SETTINGS_HEADER