/* Utility functions, constants, and classes used by more than one other modules */ // a simple class for error exceptions - msg points to a C-string error message struct Error { Error(const char* msg_ = "") : msg(msg_) {} const char* const msg; }; /* *** add any other functions or declarations here and define in Utility.cpp */