VendorNdk.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Copyright (C) 2017 The Android Open Source Project
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #ifndef ANDROID_VINTF_VENDOR_NDK_H
  17. #define ANDROID_VINTF_VENDOR_NDK_H
  18. #include <set>
  19. #include <string>
  20. namespace android {
  21. namespace vintf {
  22. class VendorNdk {
  23. public:
  24. VendorNdk() = default;
  25. VendorNdk(std::string&& version) : mVersion(std::move(version)) {}
  26. VendorNdk(std::string&& version, std::set<std::string>&& libs)
  27. : mVersion(std::move(version)), mLibraries(std::move(libs)) {}
  28. VendorNdk(const std::string& version) : mVersion(version) {}
  29. VendorNdk(const std::string& version, const std::set<std::string>& libs)
  30. : mVersion(version), mLibraries(libs) {}
  31. bool operator==(const VendorNdk& other) const { return version() == other.version(); }
  32. const std::string& version() const { return mVersion; }
  33. const std::set<std::string>& libraries() const { return mLibraries; }
  34. private:
  35. friend struct VendorNdkConverter;
  36. std::string mVersion;
  37. std::set<std::string> mLibraries;
  38. };
  39. } // namespace vintf
  40. } // namespace android
  41. #endif // ANDROID_VINTF_VENDOR_NDK_H