32#include <wx/fileconf.h>
39#include <wx/msw/regconf.h>
66#include <wx/msw/msvcrt.h>
68#if !defined(_INC_CRTDBG) || !defined(_CRTDBG_MAP_ALLOC)
69#pragma message("Debug CRT functions have not been included!")
84typedef std::string string;
85typedef vector<string> vecStr;
86typedef vector<int> vecInt;
87typedef vector<float> vecFloat;
88typedef vector<double> vecDouble;
89typedef vector<double*> vecDoublePt;
90typedef Eigen::ArrayXd axd;
91typedef Eigen::ArrayXi axi;
92typedef Eigen::ArrayXXd axxd;
93typedef vector<Eigen::ArrayXd> vecAxd;
94typedef vector<Eigen::ArrayXXd> vecAxxd;
113 : std::logic_error(
"Function not yet implemented") {};
119 : std::logic_error(
"This should not happen...") {};
125 : std::invalid_argument(msg) {};
131 : std::logic_error(msg) {};
137 : std::logic_error(msg) {};
142 explicit NotFound(
const wxString& msg)
143 : std::logic_error(msg) {};
Definition Includes.h:134
Definition Includes.h:122
Definition Includes.h:128
Definition Includes.h:140
Definition Includes.h:110
Definition Includes.h:116