GraphLibrary  0.0.1
A simple library that implements various graph algorithms.
 All Classes Namespaces Files Functions Variables Typedefs Macros
gl_base.hpp
Go to the documentation of this file.
1 #ifndef GL_BASE_HPP
2 #define GL_BASE_HPP
3 
4 #include <limits>
5 #include <cstdint>
6 
7 #define GL_INF(ValueType) \
8 std::numeric_limits<ValueType>::max()
9 
10 namespace gl
11 {
12  class Matrix;
13  class List;
14 
15  class Directed;
16  class Undirected;
17 
18  using index_type = std::size_t;
19 } /* namespace gl */
20 
21 #endif // GL_BASE_HPP
std::size_t index_type
Definition: gl_base.hpp:18