Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00042 #ifdef _MSC_VER
00043 #pragma once
00044 #endif
00045
00046 #ifndef OGDF_DINO_TOOLS_H
00047 #define OGDF_DINO_TOOLS_H
00048
00049 #include <ogdf/basic/String.h>
00050 #include <ogdf/basic/Array.h>
00051
00052
00053 namespace ogdf {
00054
00055
00056
00057
00058
00059
00060 class OGDF_EXPORT DinoTools {
00061
00062 public:
00063
00064
00065
00066 static void stringToDoubleArray(const String &str, Array<double> &doubleArray);
00067
00068
00069
00070
00071 static void reportError(const char *functionName,
00072 int sourceLine,
00073 const char *errorMessage,
00074 int inputFileLine = -1,
00075 bool abort = true);
00076
00077 };
00078
00079
00080
00081 }
00082
00083 #endif