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 17 #ifndef ANDROID_VINTF_VENDOR_NDK_H 18 #define ANDROID_VINTF_VENDOR_NDK_H 19 20 #include <set> 21 #include <string> 22 23 namespace android { 24 namespace vintf { 25 26 class VendorNdk { 27 public: 28 VendorNdk() = default; VendorNdk(std::string && version)29 VendorNdk(std::string&& version) : mVersion(std::move(version)) {} VendorNdk(std::string && version,std::set<std::string> && libs)30 VendorNdk(std::string&& version, std::set<std::string>&& libs) 31 : mVersion(std::move(version)), mLibraries(std::move(libs)) {} VendorNdk(const std::string & version)32 VendorNdk(const std::string& version) : mVersion(version) {} VendorNdk(const std::string & version,const std::set<std::string> & libs)33 VendorNdk(const std::string& version, const std::set<std::string>& libs) 34 : mVersion(version), mLibraries(libs) {} 35 bool operator==(const VendorNdk& other) const { return version() == other.version(); } version()36 const std::string& version() const { return mVersion; } libraries()37 const std::set<std::string>& libraries() const { return mLibraries; } 38 39 private: 40 friend struct VendorNdkConverter; 41 std::string mVersion; 42 std::set<std::string> mLibraries; 43 }; 44 45 } // namespace vintf 46 } // namespace android 47 48 #endif // ANDROID_VINTF_VENDOR_NDK_H 49