Gamp v0.0.7-36-g24b1eb6
Gamp: Graphics, Audio, Multimedia and Processing
Loading...
Searching...
No Matches
Graph.hpp
Go to the documentation of this file.
1/*
2 * Author: Sven Gothel <sgothel@jausoft.com> (C++, Java) and Rami Santina (Java)
3 * Copyright Gothel Software e.K. and the authors
4 *
5 * SPDX-License-Identifier: MIT
6 *
7 * This Source Code Form is subject to the terms of the MIT License
8 * If a copy of the MIT was not distributed with this file,
9 * you can obtain one at https://opensource.org/license/mit/.
10 */
11#ifndef JAU_GAMP_GRAPH_GRAPH_HPP_
12#define JAU_GAMP_GRAPH_GRAPH_HPP_
13
14namespace gamp::graph {
15
16 /** @defgroup Gamp_Graph Gamp Graph
17 * Basic Graph Framework
18 *
19 * @{
20 */
21
22 class Graph {
23 public:
24 static bool DEBUG_MODE;
25 };
26
27
28 /**@}*/
29
30} // namespace gamp::graph
31
32#endif /* JAU_GAMP_GRAPH_GRAPH_HPP_ */
static bool DEBUG_MODE
Definition Graph.hpp:24