//--------------------------------------------------------------------------- // ŠNikolai V. Shokhirev, 2004-2008 <nikolai@shokhirev.com> http://www.shokhirev.com/nikolai.html // Reduced demo version //--------------------------------------------------------------------------- #ifndef StringUtils_H #define StringUtils_H #include <string> #include "Complex.h" //--------------------------------------------------------------------------- using namespace std; string BoolToStr(bool b); string ComplexToStr(Complex c); // more functions ... #endif