CXXGraph  0.4.0
CXXGraph is a header only, that manages the Graphs and it's algorithm in C++
All Classes Functions
ConstString.hpp
1 /***********************************************************/
2 /*** ______ ____ ______ _ ***/
3 /*** / ___\ \/ /\ \/ / ___|_ __ __ _ _ __ | |__ ***/
4 /*** | | \ / \ / | _| '__/ _` | '_ \| '_ \ ***/
5 /*** | |___ / \ / \ |_| | | | (_| | |_) | | | | ***/
6 /*** \____/_/\_\/_/\_\____|_| \__,_| .__/|_| |_| ***/
7 /*** |_| ***/
8 /***********************************************************/
9 /*** Header-Only C++ Library for Graph ***/
10 /*** Representation and Algorithms ***/
11 /***********************************************************/
12 /*** Author: ZigRazor ***/
13 /*** E-Mail: zigrazor@gmail.com ***/
14 /***********************************************************/
15 /*** Collaboration: ----------- ***/
16 /***********************************************************/
17 /*** License: MPL v2.0 ***/
18 /***********************************************************/
19 
20 #ifndef __CXXGRAPH_CONSTSTRING_H__
21 #define __CXXGRAPH_CONSTSTRING_H__
22 
23 #pragma once
24 
25 namespace CXXGRAPH
26 {
27  //STRING ERROR CONST EXPRESSION
28  constexpr char ERR_NO_DIR_OR_UNDIR_EDGE[] = "Edge are neither Directed neither Undirected";
29  constexpr char ERR_DIR_GRAPH[] = "Graph is directed";
30  constexpr char ERR_NO_WEIGHTED_EDGE[] = "Edge are not Weighted";
31  constexpr char ERR_NEGATIVE_WEIGHTED_EDGE[] = "Edge negative Weighted";
32  constexpr char ERR_TARGET_NODE_NOT_REACHABLE[] = "Target Node not Reachable";
33  constexpr char ERR_TARGET_NODE_NOT_IN_GRAPH[] = "Target Node not inside Graph";
34  constexpr char ERR_SOURCE_NODE_NOT_IN_GRAPH[] = "Source Node not inside Graph";
35  constexpr char ERR_NOT_STRONG_CONNECTED[] = "Graph is not strongly connected";
37 }
38 #endif // __CXXGRAPH_CONSTSTRING_H__