bref
API 2014 of the Zia HTTP server.
|
00001 00011 #ifndef BREF_API_VERSION_H_ 00012 #define BREF_API_VERSION_H_ 00013 00014 namespace bref { 00015 00019 struct Version 00020 { 00021 Version() 00022 : Major(0), 00023 Minor(0) 00024 { } 00025 00026 Version(int theMajor, int theMinor) 00027 : Major(theMajor), 00028 Minor(theMinor) 00029 { } 00030 00031 int Major; 00032 int Minor; 00033 }; 00034 00035 } // ! bref 00036 00037 #endif /* !BREF_API_VERSION_H_ */