MDA
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups
basics.hpp
Go to the documentation of this file.
1 /*
2  * basics.hpp
3  *
4  * Created on: Jun 8, 2013
5  * Author: Carsten Kemena
6  *
7  * This file is part of MDAT.
8  *
9  * MDAT is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Lesser General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * MDAT is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with MDAT. If not, see <http://www.gnu.org/licenses/>.
21  *
22  */
23 
24 #ifndef BASICS_HPP_
25 #define BASICS_HPP_
26 
27 
33 namespace MDAT
34 {
35 
36 
37 
38 
39 template <typename T>
40 struct Tag {};
41 
42 
43 struct Default_;
47 typedef Tag<Default_> Default;
48 
49 
50 struct MemSafe_;
54 typedef Tag<MemSafe_> const MemSafe;
55 
56 }
57 
58 #endif /* BASICS_HPP_ */