Common.h
1 /*
2  * Medical Image Registration ToolKit (MIRTK)
3  *
4  * Copyright 2008-2015 Imperial College London
5  * Copyright 2013-2015 Andreas Schuh
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19 
20 #ifndef MIRTK_Common_H
21 #define MIRTK_Common_H
22 
23 // Configuration, preprocessor flags
24 #include "mirtk/Config.h"
25 #include "mirtk/CommonConfig.h"
26 
27 // Standard containers
28 #include "mirtk/Exception.h"
29 #include "mirtk/Pair.h"
30 #include "mirtk/Array.h"
31 #include "mirtk/ArrayHeap.h"
32 #include "mirtk/List.h"
33 #include "mirtk/OrderedSet.h"
34 #include "mirtk/OrderedMap.h"
35 #include "mirtk/UnorderedSet.h"
36 #include "mirtk/UnorderedMap.h"
37 #include "mirtk/PriorityQueue.h"
38 #include "mirtk/Queue.h"
39 #include "mirtk/Stack.h"
40 
41 // Standard functions/types
42 #include "mirtk/Assert.h"
43 #include "mirtk/Math.h"
44 #include "mirtk/Memory.h"
45 #include "mirtk/String.h"
46 #include "mirtk/Path.h"
47 #include "mirtk/Version.h"
48 #include "mirtk/FastDelegate.h"
49 #include "mirtk/Status.h"
50 #include "mirtk/Algorithm.h"
51 #include "mirtk/Numeric.h"
52 #include "mirtk/Random.h"
53 
54 // Base classes
55 #include "mirtk/Object.h"
56 #include "mirtk/ObjectFactory.h"
57 
58 #include "mirtk/Observer.h"
59 #include "mirtk/Observable.h"
60 #include "mirtk/Configurable.h"
61 
62 // I/O
63 #include "mirtk/Indent.h"
64 #include "mirtk/Stream.h"
65 #include "mirtk/Cfstream.h"
66 
67 // Testing
68 #include "mirtk/TestProd.h"
69 
70 
71 #endif // MIRTK_Common_H
Imports the STL functions for Array heap operations into the mirtk namespace.