32#include <wx/fileconf.h>
39#include <wx/msw/regconf.h>
65#include <wx/msw/msvcrt.h>
67#if !defined(_INC_CRTDBG) || !defined(_CRTDBG_MAP_ALLOC)
68#pragma message("Debug CRT functions have not been included!")
83typedef std::string string;
84typedef vector<string> vecStr;
85typedef vector<int> vecInt;
86typedef vector<float> vecFloat;
87typedef vector<double> vecDouble;
88typedef vector<double*> vecDoublePt;
89typedef Eigen::ArrayXd axd;
90typedef Eigen::ArrayXi axi;
91typedef Eigen::ArrayXXd axxd;
92typedef vector<Eigen::ArrayXd> vecAxd;
93typedef vector<Eigen::ArrayXXd> vecAxxd;
112 : std::logic_error(
"Function not yet implemented") {};
118 : std::logic_error(
"This should not happen...") {};
124 : std::invalid_argument(msg) {};
130 : std::logic_error(msg) {};
136 : std::logic_error(msg) {};
141 explicit NotFound(
const wxString& msg)
142 : std::logic_error(msg) {};
Definition Includes.h:133
Definition Includes.h:121
Definition Includes.h:127
Definition Includes.h:139
Definition Includes.h:109
Definition Includes.h:115