Skip to content

Latest commit

 

History

History
38 lines (21 loc) · 1.07 KB

CppGetWtVersion.md

File metadata and controls

38 lines (21 loc) · 1.07 KB

 

 

 

 

 

 

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; }