NetCDF4 C++ API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
NcVersion.h
Go to the documentation of this file.
1 
14 #ifndef INC_netcdf_NcVersion_h
15 #define INC_netcdf_NcVersion_h
16 
17 #include <string>
18 
19 namespace netcdf {
20 
21 
22 class NcVersion
23 {
24  public:
25 
30  static std::string GetVersion ();
31 
32  private:
33 
34  static char const * const versionAPI;
35 
36 };
37 
38 
39 } // namespace netcdf
40 
41 #endif // INC_netcdf_NcVersion_h
Class which returns the version of the NetCDF4 C++ API.
Definition: NcVersion.h:22
static std::string GetVersion()
Returns API version = &quot;X.Y.Z&quot; X = major version number; increment when the API changes significantly...
Definition: NcVersion.cpp:31