version.hpp 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*************************************************************************
  2. *
  3. * Copyright 2016 Realm Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. *
  17. **************************************************************************/
  18. #ifndef REALM_VERSION_HPP
  19. #define REALM_VERSION_HPP
  20. #include <string>
  21. #ifndef REALM_VERSION_MAJOR
  22. #include <realm/version_numbers.hpp>
  23. #endif
  24. #define REALM_PRODUCT_NAME "realm-core"
  25. #define REALM_VER_CHUNK "[" REALM_PRODUCT_NAME "-" REALM_VERSION_STRING "]"
  26. namespace realm {
  27. enum Feature {
  28. feature_Debug,
  29. feature_Replication,
  30. };
  31. class StringData;
  32. class Version {
  33. public:
  34. static int get_major() { return REALM_VERSION_MAJOR; }
  35. static int get_minor() { return REALM_VERSION_MINOR; }
  36. static int get_patch() { return REALM_VERSION_PATCH; }
  37. static StringData get_extra();
  38. static std::string get_version();
  39. static bool is_at_least(int major, int minor, int patch, StringData extra);
  40. static bool is_at_least(int major, int minor, int patch);
  41. static bool has_feature(Feature feature);
  42. };
  43. } // namespace realm
  44. #endif // REALM_VERSION_HPP