# HG changeset patch
# User Balazs Dezso <deba@inf.elte.hu>
# Date 1235391125 -3600
# Node ID f5bc148f7e1f300a6b87580a85a8e673da9322dc
# Parent 06e0fb20a97c9f9acbbd88cba806271b7c97ef08
Fix the naming convention of guards and remove one unnecessary include
diff -r 06e0fb20a97c -r f5bc148f7e1f lemon/bits/path_dump.h
a
|
b
|
|
16 | 16 | * |
17 | 17 | */ |
18 | 18 | |
19 | | #ifndef LEMON_BITS_PRED_MAP_PATH_H |
20 | | #define LEMON_BITS_PRED_MAP_PATH_H |
| 19 | #ifndef LEMON_BITS_PATH_DUMP_H |
| 20 | #define LEMON_BITS_PATH_DUMP_H |
21 | 21 | |
22 | 22 | #include <lemon/core.h> |
23 | 23 | #include <lemon/concept_check.h> |
diff -r 06e0fb20a97c -r f5bc148f7e1f lemon/bits/windows.h
a
|
b
|
|
16 | 16 | * |
17 | 17 | */ |
18 | 18 | |
19 | | #ifndef LEMON_WINDOWS_H |
20 | | #define LEMON_WINDOWS_H |
| 19 | #ifndef LEMON_BITS_WINDOWS_H |
| 20 | #define LEMON_BITS_WINDOWS_H |
21 | 21 | |
22 | 22 | #include <string> |
23 | 23 | |
diff -r 06e0fb20a97c -r f5bc148f7e1f lemon/concepts/digraph.h
a
|
b
|
|
16 | 16 | * |
17 | 17 | */ |
18 | 18 | |
19 | | #ifndef LEMON_CONCEPT_DIGRAPH_H |
20 | | #define LEMON_CONCEPT_DIGRAPH_H |
| 19 | #ifndef LEMON_CONCEPTS_DIGRAPH_H |
| 20 | #define LEMON_CONCEPTS_DIGRAPH_H |
21 | 21 | |
22 | 22 | ///\ingroup graph_concepts |
23 | 23 | ///\file |
… |
… |
|
484 | 484 | |
485 | 485 | |
486 | 486 | |
487 | | #endif // LEMON_CONCEPT_DIGRAPH_H |
| 487 | #endif |
diff -r 06e0fb20a97c -r f5bc148f7e1f lemon/concepts/graph.h
a
|
b
|
|
20 | 20 | ///\file |
21 | 21 | ///\brief The concept of Undirected Graphs. |
22 | 22 | |
23 | | #ifndef LEMON_CONCEPT_GRAPH_H |
24 | | #define LEMON_CONCEPT_GRAPH_H |
| 23 | #ifndef LEMON_CONCEPTS_GRAPH_H |
| 24 | #define LEMON_CONCEPTS_GRAPH_H |
25 | 25 | |
26 | 26 | #include <lemon/concepts/graph_components.h> |
27 | | #include <lemon/concepts/graph.h> |
28 | 27 | #include <lemon/core.h> |
29 | 28 | |
30 | 29 | namespace lemon { |
diff -r 06e0fb20a97c -r f5bc148f7e1f lemon/concepts/graph_components.h
a
|
b
|
|
21 | 21 | ///\brief The concept of graph components. |
22 | 22 | |
23 | 23 | |
24 | | #ifndef LEMON_CONCEPT_GRAPH_COMPONENTS_H |
25 | | #define LEMON_CONCEPT_GRAPH_COMPONENTS_H |
| 24 | #ifndef LEMON_CONCEPTS_GRAPH_COMPONENTS_H |
| 25 | #define LEMON_CONCEPTS_GRAPH_COMPONENTS_H |
26 | 26 | |
27 | 27 | #include <lemon/core.h> |
28 | 28 | #include <lemon/concepts/maps.h> |
diff -r 06e0fb20a97c -r f5bc148f7e1f lemon/concepts/heap.h
a
|
b
|
|
20 | 20 | ///\file |
21 | 21 | ///\brief The concept of heaps. |
22 | 22 | |
23 | | #ifndef LEMON_CONCEPT_HEAP_H |
24 | | #define LEMON_CONCEPT_HEAP_H |
| 23 | #ifndef LEMON_CONCEPTS_HEAP_H |
| 24 | #define LEMON_CONCEPTS_HEAP_H |
25 | 25 | |
26 | 26 | #include <lemon/core.h> |
27 | 27 | #include <lemon/concept_check.h> |
… |
… |
|
243 | 243 | /// @} |
244 | 244 | } // namespace lemon |
245 | 245 | } |
246 | | #endif // LEMON_CONCEPT_PATH_H |
| 246 | #endif |
diff -r 06e0fb20a97c -r f5bc148f7e1f lemon/concepts/maps.h
a
|
b
|
|
16 | 16 | * |
17 | 17 | */ |
18 | 18 | |
19 | | #ifndef LEMON_CONCEPT_MAPS_H |
20 | | #define LEMON_CONCEPT_MAPS_H |
| 19 | #ifndef LEMON_CONCEPTS_MAPS_H |
| 20 | #define LEMON_CONCEPTS_MAPS_H |
21 | 21 | |
22 | 22 | #include <lemon/core.h> |
23 | 23 | #include <lemon/concept_check.h> |
… |
… |
|
213 | 213 | |
214 | 214 | } //namespace lemon |
215 | 215 | |
216 | | #endif // LEMON_CONCEPT_MAPS_H |
| 216 | #endif |
diff -r 06e0fb20a97c -r f5bc148f7e1f lemon/concepts/path.h
a
|
b
|
|
21 | 21 | ///\brief Classes for representing paths in digraphs. |
22 | 22 | /// |
23 | 23 | |
24 | | #ifndef LEMON_CONCEPT_PATH_H |
25 | | #define LEMON_CONCEPT_PATH_H |
| 24 | #ifndef LEMON_CONCEPTS_PATH_H |
| 25 | #define LEMON_CONCEPTS_PATH_H |
26 | 26 | |
27 | 27 | #include <lemon/core.h> |
28 | 28 | #include <lemon/concept_check.h> |
… |
… |
|
305 | 305 | |
306 | 306 | } // namespace lemon |
307 | 307 | |
308 | | #endif // LEMON_CONCEPT_PATH_H |
| 308 | #endif |
diff -r 06e0fb20a97c -r f5bc148f7e1f lemon/lp_skeleton.h
a
|
b
|
|
16 | 16 | * |
17 | 17 | */ |
18 | 18 | |
19 | | #ifndef LEMON_LP_SKELETON |
20 | | #define LEMON_LP_SKELETON |
| 19 | #ifndef LEMON_LP_SKELETON_H |
| 20 | #define LEMON_LP_SKELETON_H |
21 | 21 | |
22 | 22 | #include <lemon/lp_base.h> |
23 | 23 | |
… |
… |
|
226 | 226 | |
227 | 227 | } //namespace lemon |
228 | 228 | |
229 | | #endif // LEMON_LP_SKELETON |
| 229 | #endif |