GetWtVersion is a version code snippets to obtain the version of the current Wt library in use.
#include <string> #include <Wt/WConfig.h> ///GetWtVersion returns the version of the currently installed Wt library ///From http://www.richelbilderbeek.nl/CppGetWtVersion.htm const std::string GetWtVersion() { return WT_VERSION_STR; }