├── Pods ├── Headers │ ├── Private │ │ ├── Firebase │ │ │ └── Firebase.h │ │ ├── FirebaseAuthInterop │ │ │ └── FIRAuthInterop.h │ │ └── FirebaseCoreDiagnosticsInterop │ │ │ ├── FIRCoreDiagnosticsData.h │ │ │ └── FIRCoreDiagnosticsInterop.h │ └── Public │ │ ├── Firebase │ │ └── Firebase.h │ │ ├── FirebaseAuthInterop │ │ └── FIRAuthInterop.h │ │ └── FirebaseCoreDiagnosticsInterop │ │ ├── FIRCoreDiagnosticsData.h │ │ └── FIRCoreDiagnosticsInterop.h ├── Firebase │ └── CoreOnly │ │ └── Sources │ │ └── module.modulemap ├── SwiftLint │ └── swiftlint ├── Target Support Files │ ├── abseil │ │ ├── abseil.modulemap │ │ ├── abseil-dummy.m │ │ ├── abseil-prefix.pch │ │ ├── abseil.debug.xcconfig │ │ ├── abseil.release.xcconfig │ │ └── abseil-Info.plist │ ├── nanopb │ │ ├── nanopb.modulemap │ │ ├── nanopb-dummy.m │ │ ├── nanopb-prefix.pch │ │ ├── nanopb.debug.xcconfig │ │ ├── nanopb.release.xcconfig │ │ ├── nanopb-umbrella.h │ │ └── nanopb-Info.plist │ ├── gRPC-C++ │ │ ├── gRPC-C++.modulemap │ │ ├── gRPC-C++-dummy.m │ │ ├── gRPC-C++-prefix.pch │ │ ├── ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist │ │ └── gRPC-C++-Info.plist │ ├── PromisesObjC │ │ ├── PromisesObjC.modulemap │ │ ├── PromisesObjC-dummy.m │ │ ├── PromisesObjC.debug.xcconfig │ │ ├── PromisesObjC.release.xcconfig │ │ └── PromisesObjC-Info.plist │ ├── gRPC-Core │ │ ├── gRPC-Core-dummy.m │ │ ├── gRPC-Core-prefix.pch │ │ └── gRPC-Core-Info.plist │ ├── FirebaseCore │ │ ├── FirebaseCore.modulemap │ │ ├── FirebaseCore-dummy.m │ │ ├── FirebaseCore-umbrella.h │ │ └── FirebaseCore-Info.plist │ ├── leveldb-library │ │ ├── leveldb-library.modulemap │ │ ├── leveldb-library-dummy.m │ │ ├── leveldb-library-prefix.pch │ │ ├── leveldb-library-umbrella.h │ │ ├── leveldb-library.debug.xcconfig │ │ ├── leveldb-library.release.xcconfig │ │ └── leveldb-library-Info.plist │ ├── GoogleUtilities │ │ ├── GoogleUtilities.modulemap │ │ ├── GoogleUtilities-dummy.m │ │ ├── GoogleUtilities-prefix.pch │ │ ├── GoogleUtilities-umbrella.h │ │ ├── GoogleUtilities.debug.xcconfig │ │ ├── GoogleUtilities.release.xcconfig │ │ └── GoogleUtilities-Info.plist │ ├── BoringSSL-GRPC │ │ ├── BoringSSL-GRPC-dummy.m │ │ ├── BoringSSL-GRPC.modulemap │ │ ├── BoringSSL-GRPC.debug.xcconfig │ │ ├── BoringSSL-GRPC.release.xcconfig │ │ └── BoringSSL-GRPC-Info.plist │ ├── FirebaseFirestore │ │ ├── FirebaseFirestore.modulemap │ │ ├── FirebaseFirestore-dummy.m │ │ └── FirebaseFirestore-Info.plist │ ├── GoogleDataTransport │ │ ├── GoogleDataTransport.modulemap │ │ ├── GoogleDataTransport-dummy.m │ │ ├── GoogleDataTransport.debug.xcconfig │ │ └── GoogleDataTransport.release.xcconfig │ ├── Pods-COVIDWatch iOS │ │ ├── Pods-COVIDWatch iOS.modulemap │ │ ├── Pods-COVIDWatch iOS-dummy.m │ │ ├── Pods-COVIDWatch iOS-umbrella.h │ │ ├── Pods-COVIDWatch iOS-frameworks-Debug-input-files.xcfilelist │ │ ├── Pods-COVIDWatch iOS-frameworks-Release-input-files.xcfilelist │ │ ├── Pods-COVIDWatch iOS-frameworks-Debug-output-files.xcfilelist │ │ └── Pods-COVIDWatch iOS-frameworks-Release-output-files.xcfilelist │ ├── FirebaseCoreDiagnostics │ │ ├── FirebaseCoreDiagnostics.modulemap │ │ ├── FirebaseCoreDiagnostics-dummy.m │ │ └── FirebaseCoreDiagnostics-umbrella.h │ ├── FirebaseFirestoreSwift │ │ ├── FirebaseFirestoreSwift.modulemap │ │ ├── FirebaseFirestoreSwift-dummy.m │ │ └── FirebaseFirestoreSwift-umbrella.h │ ├── Pods-COVIDWatch iOSTests │ │ ├── Pods-COVIDWatch iOSTests-acknowledgements.markdown │ │ ├── Pods-COVIDWatch iOSTests.modulemap │ │ ├── Pods-COVIDWatch iOSTests-dummy.m │ │ └── Pods-COVIDWatch iOSTests-umbrella.h │ ├── GoogleDataTransportCCTSupport │ │ ├── GoogleDataTransportCCTSupport.modulemap │ │ ├── GoogleDataTransportCCTSupport-dummy.m │ │ └── GoogleDataTransportCCTSupport-umbrella.h │ ├── Pods-COVIDWatch iOS-COVIDWatch iOSUITests │ │ ├── Pods-COVIDWatch iOS-COVIDWatch iOSUITests.modulemap │ │ ├── Pods-COVIDWatch iOS-COVIDWatch iOSUITests-dummy.m │ │ ├── Pods-COVIDWatch iOS-COVIDWatch iOSUITests-umbrella.h │ │ ├── Pods-COVIDWatch iOS-COVIDWatch iOSUITests-frameworks-Debug-output-files.xcfilelist │ │ ├── Pods-COVIDWatch iOS-COVIDWatch iOSUITests-frameworks-Release-output-files.xcfilelist │ │ ├── Pods-COVIDWatch iOS-COVIDWatch iOSUITests-frameworks-Debug-input-files.xcfilelist │ │ └── Pods-COVIDWatch iOS-COVIDWatch iOSUITests-frameworks-Release-input-files.xcfilelist │ ├── SwiftLint │ │ ├── SwiftLint.debug.xcconfig │ │ └── SwiftLint.release.xcconfig │ ├── FirebaseAuthInterop │ │ ├── FirebaseAuthInterop.debug.xcconfig │ │ └── FirebaseAuthInterop.release.xcconfig │ └── FirebaseCoreDiagnosticsInterop │ │ ├── FirebaseCoreDiagnosticsInterop.debug.xcconfig │ │ └── FirebaseCoreDiagnosticsInterop.release.xcconfig ├── BoringSSL-GRPC │ ├── include │ │ └── openssl │ │ │ ├── BoringSSL.modulemap │ │ │ ├── dtls1.h │ │ │ ├── is_boringssl.h │ │ │ ├── safestack.h │ │ │ ├── dtls1.h.grpc_back │ │ │ ├── is_boringssl.h.grpc_back │ │ │ ├── safestack.h.grpc_back │ │ │ ├── buffer.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── pkcs12.h │ │ │ ├── srtp.h │ │ │ ├── asn1_mac.h │ │ │ ├── opensslv.h │ │ │ └── ossl_typ.h │ ├── ssl │ │ └── test │ │ │ └── runner │ │ │ └── curve25519 │ │ │ ├── const_amd64.h │ │ │ └── const_amd64.h.grpc_back │ └── crypto │ │ └── x509 │ │ ├── charmap.h │ │ └── charmap.h.grpc_back ├── leveldb-library │ ├── util │ │ ├── filter_policy.cc │ │ ├── options.cc │ │ ├── hash.h │ │ └── env_windows_test_helper.h │ ├── port │ │ └── port.h │ └── db │ │ └── db_iter.h ├── abseil │ └── absl │ │ ├── time │ │ └── internal │ │ │ └── get_current_time_posix.inc │ │ └── numeric │ │ ├── int128_have_intrinsic.inc │ │ └── int128_no_intrinsic.inc ├── gRPC-C++ │ ├── src │ │ ├── cpp │ │ │ ├── common │ │ │ │ ├── rpc_method.cc │ │ │ │ └── version_cc.cc │ │ │ ├── util │ │ │ │ ├── string_ref.cc │ │ │ │ └── status.cc │ │ │ └── server │ │ │ │ └── server_credentials.cc │ │ └── core │ │ │ ├── lib │ │ │ └── iomgr │ │ │ │ ├── iomgr_posix.h │ │ │ │ ├── gethostname.h │ │ │ │ ├── pollset_set_custom.h │ │ │ │ └── pollset_set_windows.h │ │ │ └── ext │ │ │ └── filters │ │ │ └── client_channel │ │ │ └── http_proxy.h │ └── include │ │ ├── grpcpp │ │ ├── impl │ │ │ ├── call.h │ │ │ ├── rpc_method.h │ │ │ ├── service_type.h │ │ │ ├── client_unary_call.h │ │ │ ├── rpc_service_method.h │ │ │ ├── method_handler_impl.h │ │ │ └── serialization_traits.h │ │ ├── support │ │ │ ├── time.h │ │ │ ├── config.h │ │ │ ├── status.h │ │ │ ├── string_ref.h │ │ │ ├── interceptor.h │ │ │ ├── sync_stream.h │ │ │ ├── async_stream.h │ │ │ ├── stub_options.h │ │ │ ├── client_callback.h │ │ │ ├── server_callback.h │ │ │ ├── async_unary_call.h │ │ │ ├── status_code_enum.h │ │ │ ├── message_allocator.h │ │ │ ├── client_interceptor.h │ │ │ ├── server_interceptor.h │ │ │ ├── proto_buffer_reader.h │ │ │ ├── proto_buffer_writer.h │ │ │ └── slice.h │ │ ├── server_context.h │ │ ├── completion_queue.h │ │ ├── alarm.h │ │ ├── security │ │ │ └── auth_context.h │ │ ├── server.h │ │ ├── generic │ │ │ └── async_generic_service.h │ │ ├── resource_quota.h │ │ └── server_builder.h │ │ └── grpc │ │ ├── fork.h │ │ ├── status.h │ │ ├── support │ │ ├── port_platform.h │ │ ├── atm.h │ │ ├── log.h │ │ ├── sync_posix.h │ │ ├── atm_windows.h │ │ ├── sync_custom.h │ │ ├── atm_gcc_sync.h │ │ ├── sync_generic.h │ │ ├── sync_windows.h │ │ └── atm_gcc_atomic.h │ │ ├── byte_buffer.h │ │ └── byte_buffer_reader.h ├── FirebaseFirestore │ └── Firestore │ │ ├── core │ │ └── src │ │ │ └── firebase │ │ │ └── firestore │ │ │ └── remote │ │ │ └── grpc_root_certificates_generated.h │ │ └── Source │ │ └── API │ │ └── FIRFirestoreVersion.h ├── PromisesObjC │ └── Sources │ │ └── FBLPromises │ │ └── FBLPromiseError.m ├── FirebaseCore │ └── FirebaseCore │ │ └── Sources │ │ ├── Public │ │ └── FirebaseCore.h │ │ ├── FIRVersion.h │ │ └── Private │ │ └── FIRErrors.h ├── gRPC-Core │ ├── src │ │ └── core │ │ │ ├── ext │ │ │ └── filters │ │ │ │ └── client_channel │ │ │ │ ├── lb_policy │ │ │ │ └── grpclb │ │ │ │ │ └── proto │ │ │ │ │ └── grpc │ │ │ │ │ └── lb │ │ │ │ │ └── v1 │ │ │ │ │ └── google │ │ │ │ │ └── protobuf │ │ │ │ │ ├── duration.pb.c │ │ │ │ │ └── timestamp.pb.c │ │ │ │ ├── health │ │ │ │ └── health.pb.c │ │ │ │ ├── http_proxy.h │ │ │ │ └── http_proxy.h.grpc_back │ │ │ └── lib │ │ │ ├── surface │ │ │ ├── api_trace.cc │ │ │ └── api_trace.cc.grpc_back │ │ │ └── iomgr │ │ │ ├── iomgr_posix.h │ │ │ ├── iomgr_posix.h.grpc_back │ │ │ ├── pollset_set_custom.h │ │ │ ├── gethostname.h │ │ │ └── pollset_set_custom.h.grpc_back │ └── include │ │ └── grpc │ │ ├── fork.h │ │ ├── status.h │ │ ├── support │ │ ├── atm.h │ │ ├── log.h │ │ ├── port_platform.h │ │ ├── sync_posix.h │ │ ├── atm_windows.h │ │ ├── sync_custom.h │ │ ├── atm_gcc_sync.h │ │ ├── sync_generic.h │ │ ├── sync_windows.h │ │ └── atm_gcc_atomic.h │ │ ├── byte_buffer_reader.h │ │ └── byte_buffer.h ├── FirebaseFirestoreSwift │ └── Firestore │ │ └── Swift │ │ └── Source │ │ └── Codable │ │ └── CodableErrors.swift └── nanopb │ └── LICENSE.txt ├── CovidWatch iOS ├── Assets.xcassets │ ├── Contents.json │ ├── family.imageset │ │ ├── Family.pdf │ │ ├── Contents.json │ │ └── Contents 2.json │ ├── AppIcon.appiconset │ │ ├── Icon-App-1024x1024.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ ├── Icon-App-20x20@2x-1.png │ │ ├── Icon-App-29x29@2x-1.png │ │ ├── Icon-App-40x40@2x-1.png │ │ └── Icon-App-83.5x83.5@2x.png │ ├── splash-background.imageset │ │ ├── Rectangle 8.png │ │ └── Contents.json │ ├── collab-with-stanford.imageset │ │ ├── collab-with-stanford.png │ │ └── Contents.json │ ├── menu-icon.imageset │ │ └── Contents.json │ ├── x-icon.imageset │ │ └── Contents.json │ ├── checkmark.imageset │ │ └── Contents.json │ ├── launch-symbol.imageset │ │ └── Contents.json │ ├── exclamation-circle.imageset │ │ └── Contents.json │ ├── phone-alerts.imageset │ │ ├── Contents.json │ │ └── Contents 2.json │ ├── bluetooth-image.imageset │ │ ├── Contents.json │ │ └── Contents 2.json │ ├── button-arrow.imageset │ │ └── Contents.json │ ├── logo-cw-color.imageset │ │ └── Contents.json │ ├── logo-with-text.imageset │ │ ├── Contents.json │ │ └── Contents 2.json │ ├── how-it-works-1.imageset │ │ └── Contents.json │ ├── how-it-works-2.imageset │ │ └── Contents.json │ ├── how-it-works-3.imageset │ │ └── Contents.json │ ├── how-it-works-4.imageset │ │ └── Contents.json │ ├── ButtonColor.colorset │ │ └── Contents.json │ ├── TextColor.colorset │ │ └── Contents.json │ └── tintColor.colorset │ │ └── Contents.json ├── Montserrat │ ├── Roboto-Black.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-Thin.ttf │ ├── Montserrat-Bold.ttf │ ├── Montserrat-Thin.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-Regular.ttf │ ├── Montserrat-Black.ttf │ ├── Montserrat-Italic.ttf │ ├── Montserrat-Light.ttf │ ├── Montserrat-Medium.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-ThinItalic.ttf │ ├── Montserrat-ExtraBold.ttf │ ├── Montserrat-Regular.ttf │ ├── Montserrat-SemiBold.ttf │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-MediumItalic.ttf │ ├── RobotoCondensed-Bold.ttf │ ├── Montserrat-BlackItalic.ttf │ ├── Montserrat-BoldItalic.ttf │ ├── Montserrat-ExtraLight.ttf │ ├── Montserrat-LightItalic.ttf │ ├── Montserrat-ThinItalic.ttf │ ├── RobotoCondensed-Italic.ttf │ ├── RobotoCondensed-Light.ttf │ ├── Montserrat-MediumItalic.ttf │ ├── Montserrat-SemiBoldItalic.ttf │ ├── RobotoCondensed-Regular.ttf │ ├── Montserrat-ExtraBoldItalic.ttf │ ├── Montserrat-ExtraLightItalic.ttf │ ├── RobotoCondensed-BoldItalic.ttf │ └── RobotoCondensed-LightItalic.ttf ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── UIComponents │ └── BaseUIComponent.swift ├── OSLog+Additions.swift ├── CovidWatch.xcdatamodeld │ └── .xccurrentversion ├── Data │ ├── TemporaryContactNumber+Additions.swift │ ├── CoreData+Additions.swift │ └── SignedReport+TCN.swift ├── Utility │ ├── Array+Chunked.swift │ └── IsWithinXDaysOfToday.swift ├── StringStorage │ ├── AccessibilityLabel.swift │ └── AccessibilityIdentifier.swift └── Crypto │ └── KeyStoreError.swift ├── Gemfile ├── CovidWatch.xcodeproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── zsombor.xcuserdatad │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── fastlane ├── Appfile └── Matchfile ├── CovidWatch.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── swiftpm │ └── Package.resolved ├── CovidWatch iOSTests ├── CovidWatch_iOSTests.swift └── Info.plist ├── .swiftlint.yml ├── Scripts └── run_swiftlint.sh ├── CovidWatch iOSUITests └── Info.plist └── Podfile /Pods/Headers/Private/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Firebase/Firebase.h: -------------------------------------------------------------------------------- 1 | ../../../Firebase/CoreOnly/Sources/Firebase.h -------------------------------------------------------------------------------- /Pods/Firebase/CoreOnly/Sources/module.modulemap: -------------------------------------------------------------------------------- 1 | module Firebase { 2 | export * 3 | header "Firebase.h" 4 | } -------------------------------------------------------------------------------- /Pods/SwiftLint/swiftlint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/Pods/SwiftLint/swiftlint -------------------------------------------------------------------------------- /Pods/Headers/Private/FirebaseAuthInterop/FIRAuthInterop.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAuthInterop/Interop/Auth/Public/FIRAuthInterop.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FirebaseAuthInterop/FIRAuthInterop.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseAuthInterop/Interop/Auth/Public/FIRAuthInterop.h -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Roboto-Black.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Roboto-Bold.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Roboto-Light.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Roboto-Thin.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Montserrat-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Montserrat-Thin.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Roboto-Italic.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Roboto-Medium.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Roboto-Regular.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Montserrat-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Montserrat-Black.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Montserrat-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Montserrat-Italic.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Montserrat-Light.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' do 2 | gem 'bundler' 3 | gem 'fastlane' 4 | gem 'cocoapods' 5 | gem 'xcpretty' 6 | gem 'slather' 7 | end 8 | 9 | -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Montserrat-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Montserrat-ExtraBold.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/RobotoCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/RobotoCondensed-Bold.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Montserrat-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Montserrat-BlackItalic.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Montserrat-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Montserrat-BoldItalic.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Montserrat-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Montserrat-ExtraLight.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Montserrat-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Montserrat-LightItalic.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Montserrat-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Montserrat-ThinItalic.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/RobotoCondensed-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/RobotoCondensed-Italic.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/RobotoCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/RobotoCondensed-Light.ttf -------------------------------------------------------------------------------- /Pods/Headers/Private/FirebaseCoreDiagnosticsInterop/FIRCoreDiagnosticsData.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseCoreDiagnosticsInterop/Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FirebaseCoreDiagnosticsInterop/FIRCoreDiagnosticsData.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseCoreDiagnosticsInterop/Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsData.h -------------------------------------------------------------------------------- /Pods/Target Support Files/abseil/abseil.modulemap: -------------------------------------------------------------------------------- 1 | framework module absl { 2 | umbrella header "abseil-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Montserrat-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Montserrat-MediumItalic.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Montserrat-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Montserrat-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /Pods/Headers/Private/FirebaseCoreDiagnosticsInterop/FIRCoreDiagnosticsInterop.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseCoreDiagnosticsInterop/Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h -------------------------------------------------------------------------------- /Pods/Headers/Public/FirebaseCoreDiagnosticsInterop/FIRCoreDiagnosticsInterop.h: -------------------------------------------------------------------------------- 1 | ../../../FirebaseCoreDiagnosticsInterop/Interop/CoreDiagnostics/Public/FIRCoreDiagnosticsInterop.h -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb.modulemap: -------------------------------------------------------------------------------- 1 | framework module nanopb { 2 | umbrella header "nanopb-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/family.imageset/Family.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/family.imageset/Family.pdf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Montserrat-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Montserrat-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/Montserrat-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/Montserrat-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/RobotoCondensed-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/RobotoCondensed-BoldItalic.ttf -------------------------------------------------------------------------------- /CovidWatch iOS/Montserrat/RobotoCondensed-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Montserrat/RobotoCondensed-LightItalic.ttf -------------------------------------------------------------------------------- /Pods/Target Support Files/abseil/abseil-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_abseil : NSObject 3 | @end 4 | @implementation PodsDummy_abseil 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/gRPC-C++/gRPC-C++.modulemap: -------------------------------------------------------------------------------- 1 | framework module grpcpp { 2 | umbrella header "gRPC-C++-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_nanopb : NSObject 3 | @end 4 | @implementation PodsDummy_nanopb 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/gRPC-C++/gRPC-C++-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_gRPC_C__ : NSObject 3 | @end 4 | @implementation PodsDummy_gRPC_C__ 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/PromisesObjC/PromisesObjC.modulemap: -------------------------------------------------------------------------------- 1 | framework module FBLPromises { 2 | umbrella header "PromisesObjC-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/gRPC-Core/gRPC-Core-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_gRPC_Core : NSObject 3 | @end 4 | @implementation PodsDummy_gRPC_Core 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore.modulemap: -------------------------------------------------------------------------------- 1 | framework module FirebaseCore { 2 | umbrella header "FirebaseCore-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/leveldb-library/leveldb-library.modulemap: -------------------------------------------------------------------------------- 1 | framework module leveldb { 2 | umbrella header "leveldb-library-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FirebaseCore : NSObject 3 | @end 4 | @implementation PodsDummy_FirebaseCore 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/PromisesObjC/PromisesObjC-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_PromisesObjC : NSObject 3 | @end 4 | @implementation PodsDummy_PromisesObjC 5 | @end 6 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024.png -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities.modulemap: -------------------------------------------------------------------------------- 1 | framework module GoogleUtilities { 2 | umbrella header "GoogleUtilities-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x-1.png -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x-1.png -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x-1.png -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/splash-background.imageset/Rectangle 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/splash-background.imageset/Rectangle 8.png -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/include/openssl/BoringSSL.modulemap: -------------------------------------------------------------------------------- 1 | framework module openssl { 2 | umbrella header "umbrella.h" 3 | textual header "arm_arch.h" 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/BoringSSL-GRPC/BoringSSL-GRPC-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_BoringSSL_GRPC : NSObject 3 | @end 4 | @implementation PodsDummy_BoringSSL_GRPC 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseFirestore/FirebaseFirestore.modulemap: -------------------------------------------------------------------------------- 1 | framework module FirebaseFirestore { 2 | umbrella header "FirebaseFirestore-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_GoogleUtilities : NSObject 3 | @end 4 | @implementation PodsDummy_GoogleUtilities 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/leveldb-library/leveldb-library-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_leveldb_library : NSObject 3 | @end 4 | @implementation PodsDummy_leveldb_library 5 | @end 6 | -------------------------------------------------------------------------------- /CovidWatch.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Pods/Target Support Files/BoringSSL-GRPC/BoringSSL-GRPC.modulemap: -------------------------------------------------------------------------------- 1 | framework module openssl { 2 | umbrella header "umbrella.h" 3 | textual header "arm_arch.h" 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseFirestore/FirebaseFirestore-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FirebaseFirestore : NSObject 3 | @end 4 | @implementation PodsDummy_FirebaseFirestore 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.modulemap: -------------------------------------------------------------------------------- 1 | framework module GoogleDataTransport { 2 | umbrella header "GoogleDataTransport-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-COVIDWatch iOS/Pods-COVIDWatch iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_CovidWatch_iOS { 2 | umbrella header "Pods-CovidWatch iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/collab-with-stanford.imageset/collab-with-stanford.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/covidwatchorg/covidwatch-ios-tcn/HEAD/CovidWatch iOS/Assets.xcassets/collab-with-stanford.imageset/collab-with-stanford.png -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_GoogleDataTransport : NSObject 3 | @end 4 | @implementation PodsDummy_GoogleDataTransport 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-COVIDWatch iOS/Pods-COVIDWatch iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_CovidWatch_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_CovidWatch_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics.modulemap: -------------------------------------------------------------------------------- 1 | framework module FirebaseCoreDiagnostics { 2 | umbrella header "FirebaseCoreDiagnostics-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseFirestoreSwift/FirebaseFirestoreSwift.modulemap: -------------------------------------------------------------------------------- 1 | framework module FirebaseFirestoreSwift { 2 | umbrella header "FirebaseFirestoreSwift-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseFirestoreSwift/FirebaseFirestoreSwift-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FirebaseFirestoreSwift : NSObject 3 | @end 4 | @implementation PodsDummy_FirebaseFirestoreSwift 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-COVIDWatch iOSTests/Pods-COVIDWatch iOSTests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-COVIDWatch iOSTests/Pods-COVIDWatch iOSTests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_CovidWatch_iOSTests { 2 | umbrella header "Pods-CovidWatch iOSTests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CovidWatch.xcodeproj/xcuserdata/zsombor.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FirebaseCoreDiagnostics : NSObject 3 | @end 4 | @implementation PodsDummy_FirebaseCoreDiagnostics 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-COVIDWatch iOSTests/Pods-COVIDWatch iOSTests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_CovidWatch_iOSTests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_CovidWatch_iOSTests 5 | @end 6 | -------------------------------------------------------------------------------- /CovidWatch iOS/UIComponents/BaseUIComponent.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BaseUIComponent.swift 3 | // COVIDWatch iOS 4 | // 5 | // Created by Isaiah Becker-Mayer on 4/18/20. 6 | // Copyright © 2020 IZE. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport.modulemap: -------------------------------------------------------------------------------- 1 | framework module GoogleDataTransportCCTSupport { 2 | umbrella header "GoogleDataTransportCCTSupport-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- 1 | app_identifier("edu.stanford.covidwatch.ios") # The bundle identifier of your app 2 | apple_id 'jeffctown@gmail.com' 3 | itc_team_id '273123' 4 | # For more information about the Appfile, see: 5 | # https://docs.fastlane.tools/advanced/#appfile 6 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/family.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Family.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/menu-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "menu.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/x-icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Vector.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_GoogleDataTransportCCTSupport : NSObject 3 | @end 4 | @implementation PodsDummy_GoogleDataTransportCCTSupport 5 | @end 6 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/checkmark.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Vector.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CovidWatch iOS/OSLog+Additions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Zsombor Szabo on 01/04/2020. 3 | // 4 | 5 | import Foundation 6 | import os.log 7 | 8 | extension OSLog { 9 | 10 | public static let app = OSLog(subsystem: "org.covidwatch", category: "App") 11 | } 12 | -------------------------------------------------------------------------------- /fastlane/Matchfile: -------------------------------------------------------------------------------- 1 | storage_mode("git") 2 | type("appstore") 3 | 4 | # For all available options run `fastlane match --help` 5 | # Remove the # in the beginning of the line to enable the other options 6 | 7 | # The docs are available on https://docs.fastlane.tools/actions/match 8 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/launch-symbol.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Vector.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/exclamation-circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Vector.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/phone-alerts.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Phone Alerts.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/splash-background.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Rectangle 8.png", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/bluetooth-image.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "People Network.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/button-arrow.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "default-btn-arrow.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/logo-cw-color.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Covid Watch Brandmark.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/abseil/abseil-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/logo-with-text.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Covid Watch Logo - Stacked White.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/gRPC-C++/gRPC-C++-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/gRPC-Core/gRPC-Core-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-COVIDWatch iOS-COVIDWatch iOSUITests/Pods-COVIDWatch iOS-COVIDWatch iOSUITests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_CovidWatch_iOS_CovidWatch_iOSUITests { 2 | umbrella header "Pods-CovidWatch iOS-CovidWatch iOSUITests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-COVIDWatch iOS-COVIDWatch iOSUITests/Pods-COVIDWatch iOS-COVIDWatch iOSUITests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_CovidWatch_iOS_CovidWatch_iOSUITests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_CovidWatch_iOS_CovidWatch_iOSUITests 5 | @end 6 | -------------------------------------------------------------------------------- /CovidWatch.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/leveldb-library/leveldb-library-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /CovidWatch.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CovidWatch.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CovidWatch iOS/CovidWatch.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | _XCCurrentVersionName 6 | CovidWatch.xcdatamodel 7 | 8 | 9 | -------------------------------------------------------------------------------- /CovidWatch iOS/Data/TemporaryContactNumber+Additions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Zsombor Szabo on 18/04/2020. 3 | // 4 | 5 | import Foundation 6 | 7 | extension TemporaryContactNumber { 8 | 9 | override public func awakeFromInsert() { 10 | super.awakeFromInsert() 11 | self.foundDate = Date() 12 | } 13 | 14 | } 15 | -------------------------------------------------------------------------------- /CovidWatch iOS/Utility/Array+Chunked.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Zsombor Szabo on 18/03/2020. 3 | // 4 | 5 | import Foundation 6 | 7 | extension Array { 8 | func chunked(into size: Int) -> [[Element]] { 9 | return stride(from: 0, to: count, by: size).map { 10 | Array(self[$0 ..< Swift.min($0 + size, count)]) 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Pods/leveldb-library/util/filter_policy.cc: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2012 The LevelDB Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. See the AUTHORS file for names of contributors. 4 | 5 | #include "leveldb/filter_policy.h" 6 | 7 | namespace leveldb { 8 | 9 | FilterPolicy::~FilterPolicy() {} 10 | 11 | } // namespace leveldb 12 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/ssl/test/runner/curve25519/const_amd64.h: -------------------------------------------------------------------------------- 1 | // Copyright 2012 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // This code was translated into a form compatible with 6a from the public 6 | // domain sources in SUPERCOP: http://bench.cr.yp.to/supercop.html 7 | 8 | #define REDMASK51 0x0007FFFFFFFFFFFF 9 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/ssl/test/runner/curve25519/const_amd64.h.grpc_back: -------------------------------------------------------------------------------- 1 | // Copyright 2012 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // This code was translated into a form compatible with 6a from the public 6 | // domain sources in SUPERCOP: http://bench.cr.yp.to/supercop.html 7 | 8 | #define REDMASK51 0x0007FFFFFFFFFFFF 9 | -------------------------------------------------------------------------------- /CovidWatch iOSTests/CovidWatch_iOSTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Zsombor Szabo on 11/03/2020. 3 | // 4 | // 5 | import XCTest 6 | //@testable import CovidWatch 7 | 8 | class CovidWatchTests: XCTestCase { 9 | func testExample() { 10 | // This is an example of a functional test case. 11 | // Use XCTAssert and related functions to verify your tests produce the correct results. 12 | XCTAssert(true) 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /CovidWatch.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- 1 | { 2 | "object": { 3 | "pins": [ 4 | { 5 | "package": "TCNClient", 6 | "repositoryURL": "https://github.com/TCNCoalition/tcn-client-ios", 7 | "state": { 8 | "branch": "develop", 9 | "revision": "f3735e00e7c51fb8365561384e8fd7e2a656aeb6", 10 | "version": null 11 | } 12 | } 13 | ] 14 | }, 15 | "version": 1 16 | } 17 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/how-it-works-1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "how-it-works-1.pdf", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/how-it-works-2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "how-it-works-2.pdf", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/how-it-works-3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "how-it-works-3.pdf", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/how-it-works-4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "how-it-works-4.pdf", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "author" : "xcode", 19 | "version" : 1 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-COVIDWatch iOS/Pods-COVIDWatch iOS-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_CovidWatch_iOSVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_CovidWatch_iOSVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/ButtonColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0xB1", 9 | "green" : "0x58", 10 | "red" : "0x2C" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/TextColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0x58", 9 | "green" : "0x58", 10 | "red" : "0x58" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/collab-with-stanford.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "collab-with-stanford.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/tintColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0xB1", 9 | "green" : "0x58", 10 | "red" : "0x2C" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- 1 | included: 2 | - "CovidWatch iOS" 3 | - "CovidWatch iOSTests" 4 | - "CovidWatch iOSUITests" 5 | 6 | identifier_name: 7 | allowed_symbols: "_" 8 | validates_start_with_lowercase: false 9 | min_length: 1 10 | max_length: 11 | warning: 90 12 | error: 1000 13 | excluded: 14 | - id 15 | 16 | opt_in_rules: 17 | - force_unwrapping 18 | 19 | disabled_rules: 20 | - implicit_getter 21 | - trailing_whitespace 22 | - switch_case_alignment 23 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseFirestoreSwift/FirebaseFirestoreSwift-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double FirebaseFirestoreSwiftVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char FirebaseFirestoreSwiftVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "GULLoggerLevel.h" 14 | 15 | FOUNDATION_EXPORT double GoogleUtilitiesVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char GoogleUtilitiesVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-COVIDWatch iOSTests/Pods-COVIDWatch iOSTests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_CovidWatch_iOSTestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_CovidWatch_iOSTestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /CovidWatch iOS/Data/CoreData+Additions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Zsombor Szabo on 13/03/2020. 3 | // 4 | // 5 | 6 | import Foundation 7 | 8 | enum UploadState: Int16 { 9 | case notUploaded = 0 10 | case uploading 11 | case uploaded 12 | } 13 | 14 | extension String { 15 | var bool: Bool { 16 | switch self.lowercased() { 17 | case "true", "t", "yes", "y", "1": 18 | return true 19 | default: 20 | return false 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Pods/leveldb-library/util/options.cc: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2011 The LevelDB Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. See the AUTHORS file for names of contributors. 4 | 5 | #include "leveldb/options.h" 6 | 7 | #include "leveldb/comparator.h" 8 | #include "leveldb/env.h" 9 | 10 | namespace leveldb { 11 | 12 | Options::Options() : comparator(BytewiseComparator()), env(Env::Default()) {} 13 | 14 | } // namespace leveldb 15 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCoreDiagnostics/FirebaseCoreDiagnostics-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "firebasecore.nanopb.h" 14 | 15 | FOUNDATION_EXPORT double FirebaseCoreDiagnosticsVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char FirebaseCoreDiagnosticsVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/family.imageset/Contents 2.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "Family.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "Family@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "Family@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleDataTransportCCTSupport/GoogleDataTransportCCTSupport-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "cct.nanopb.h" 14 | 15 | FOUNDATION_EXPORT double GoogleDataTransportCCTSupportVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char GoogleDataTransportCCTSupportVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftLint/SwiftLint.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SwiftLint 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_ROOT = ${SRCROOT} 6 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SwiftLint 7 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 8 | SKIP_INSTALL = YES 9 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftLint/SwiftLint.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SwiftLint 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_ROOT = ${SRCROOT} 6 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/SwiftLint 7 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 8 | SKIP_INSTALL = YES 9 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/phone-alerts.imageset/Contents 2.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "phone-alerts.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "phone-alerts@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "phone-alerts@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-COVIDWatch iOS-COVIDWatch iOSUITests/Pods-COVIDWatch iOS-COVIDWatch iOSUITests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_CovidWatch_iOS_CovidWatch_iOSUITestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_CovidWatch_iOS_CovidWatch_iOSUITestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/logo-with-text.imageset/Contents 2.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "logo-with-text.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "logo-with-text@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "logo-with-text@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Pods/Target Support Files/BoringSSL-GRPC/BoringSSL-GRPC.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_ROOT = ${SRCROOT} 6 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/BoringSSL-GRPC 7 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 8 | SKIP_INSTALL = YES 9 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /Pods/Target Support Files/BoringSSL-GRPC/BoringSSL-GRPC.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_ROOT = ${SRCROOT} 6 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/BoringSSL-GRPC 7 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 8 | SKIP_INSTALL = YES 9 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /CovidWatch iOS/Assets.xcassets/bluetooth-image.imageset/Contents 2.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bluetooth-image.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "bluetooth-image@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "bluetooth-image@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "FIRApp.h" 14 | #import "FIRConfiguration.h" 15 | #import "FirebaseCore.h" 16 | #import "FIRLoggerLevel.h" 17 | #import "FIROptions.h" 18 | 19 | FOUNDATION_EXPORT double FirebaseCoreVersionNumber; 20 | FOUNDATION_EXPORT const unsigned char FirebaseCoreVersionString[]; 21 | 22 | -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/nanopb 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_ROOT = ${SRCROOT} 6 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/nanopb 7 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 8 | SKIP_INSTALL = YES 9 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/nanopb 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 3 | PODS_BUILD_DIR = ${BUILD_DIR} 4 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 5 | PODS_ROOT = ${SRCROOT} 6 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/nanopb 7 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 8 | SKIP_INSTALL = YES 9 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /Scripts/run_swiftlint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/zsh 2 | 3 | # check to make sure were in the right directory, print error if not found, 4 | # this is intentionally not using any Xcode build variables 5 | # so that it can be run locally for debugging from the repo root. 6 | [ -d "CovidWatch iOS" ] || echo "error: No 'CovidWatch iOS' directory found. Are you running this from the repo root?" 7 | 8 | # github actions are run as runner 9 | if [[ "$USER" == "runner" ]] 10 | then 11 | echo "warning: CI system detected - skipping swiftlint" 12 | else 13 | Pods/SwiftLint/swiftlint --strict --config .swiftlint.yml 14 | fi 15 | 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-COVIDWatch iOS/Pods-COVIDWatch iOS-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${PODS_ROOT}/Target Support Files/Pods-CovidWatch iOS/Pods-CovidWatch iOS-frameworks.sh 2 | ${BUILT_PRODUCTS_DIR}/BoringSSL-GRPC/openssl_grpc.framework 3 | ${BUILT_PRODUCTS_DIR}/GoogleUtilities/GoogleUtilities.framework 4 | ${BUILT_PRODUCTS_DIR}/PromisesObjC/FBLPromises.framework 5 | ${BUILT_PRODUCTS_DIR}/abseil/absl.framework 6 | ${BUILT_PRODUCTS_DIR}/gRPC-C++/grpcpp.framework 7 | ${BUILT_PRODUCTS_DIR}/gRPC-Core/grpc.framework 8 | ${BUILT_PRODUCTS_DIR}/leveldb-library/leveldb.framework 9 | ${BUILT_PRODUCTS_DIR}/nanopb/nanopb.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-COVIDWatch iOS/Pods-COVIDWatch iOS-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${PODS_ROOT}/Target Support Files/Pods-CovidWatch iOS/Pods-CovidWatch iOS-frameworks.sh 2 | ${BUILT_PRODUCTS_DIR}/BoringSSL-GRPC/openssl_grpc.framework 3 | ${BUILT_PRODUCTS_DIR}/GoogleUtilities/GoogleUtilities.framework 4 | ${BUILT_PRODUCTS_DIR}/PromisesObjC/FBLPromises.framework 5 | ${BUILT_PRODUCTS_DIR}/abseil/absl.framework 6 | ${BUILT_PRODUCTS_DIR}/gRPC-C++/grpcpp.framework 7 | ${BUILT_PRODUCTS_DIR}/gRPC-Core/grpc.framework 8 | ${BUILT_PRODUCTS_DIR}/leveldb-library/leveldb.framework 9 | ${BUILT_PRODUCTS_DIR}/nanopb/nanopb.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-COVIDWatch iOS/Pods-COVIDWatch iOS-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/openssl_grpc.framework 2 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GoogleUtilities.framework 3 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FBLPromises.framework 4 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/absl.framework 5 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/grpcpp.framework 6 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/grpc.framework 7 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/leveldb.framework 8 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/nanopb.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-COVIDWatch iOS/Pods-COVIDWatch iOS-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/openssl_grpc.framework 2 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GoogleUtilities.framework 3 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FBLPromises.framework 4 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/absl.framework 5 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/grpcpp.framework 6 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/grpc.framework 7 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/leveldb.framework 8 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/nanopb.framework -------------------------------------------------------------------------------- /Pods/leveldb-library/util/hash.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2011 The LevelDB Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. See the AUTHORS file for names of contributors. 4 | // 5 | // Simple hash function used for internal data structures 6 | 7 | #ifndef STORAGE_LEVELDB_UTIL_HASH_H_ 8 | #define STORAGE_LEVELDB_UTIL_HASH_H_ 9 | 10 | #include 11 | #include 12 | 13 | namespace leveldb { 14 | 15 | uint32_t Hash(const char* data, size_t n, uint32_t seed); 16 | 17 | } // namespace leveldb 18 | 19 | #endif // STORAGE_LEVELDB_UTIL_HASH_H_ 20 | -------------------------------------------------------------------------------- /Pods/Target Support Files/PromisesObjC/PromisesObjC.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/PromisesObjC 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/PromisesObjC/PromisesObjC.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/PromisesObjC 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /CovidWatch iOS/Utility/IsWithinXDaysOfToday.swift: -------------------------------------------------------------------------------- 1 | // 2 | // IsWithinXDaysOfToday.swift 3 | // CovidWatch iOS 4 | // 5 | // Created by Isaiah Becker-Mayer on 4/14/20. 6 | // 7 | // 8 | 9 | import Foundation 10 | 11 | func isDWithinXDaysOfToday(D: Date, X: Int) -> Bool { 12 | let calendar = Calendar.current 13 | let now = Date() 14 | 15 | let components = calendar.dateComponents([.day], from: D, to: now) 16 | if let numDays = components.day { 17 | if numDays <= X { 18 | return true 19 | } else { 20 | return false 21 | } 22 | } 23 | return false // Should not reach here 24 | } 25 | -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "pb.h" 14 | #import "pb_common.h" 15 | #import "pb_decode.h" 16 | #import "pb_encode.h" 17 | #import "pb.h" 18 | #import "pb_decode.h" 19 | #import "pb_common.h" 20 | #import "pb.h" 21 | #import "pb_encode.h" 22 | #import "pb_common.h" 23 | 24 | FOUNDATION_EXPORT double nanopbVersionNumber; 25 | FOUNDATION_EXPORT const unsigned char nanopbVersionString[]; 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-COVIDWatch iOS-COVIDWatch iOSUITests/Pods-COVIDWatch iOS-COVIDWatch iOSUITests-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/openssl_grpc.framework 2 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GoogleUtilities.framework 3 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FBLPromises.framework 4 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/absl.framework 5 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/grpcpp.framework 6 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/grpc.framework 7 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/leveldb.framework 8 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/nanopb.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-COVIDWatch iOS-COVIDWatch iOSUITests/Pods-COVIDWatch iOS-COVIDWatch iOSUITests-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/openssl_grpc.framework 2 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GoogleUtilities.framework 3 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/FBLPromises.framework 4 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/absl.framework 5 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/grpcpp.framework 6 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/grpc.framework 7 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/leveldb.framework 8 | ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/nanopb.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/abseil/abseil.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_SEARCH_USER_PATHS = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/abseil 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -l"c++" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/abseil 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USER_HEADER_SEARCH_PATHS = $(inherited) "$(PODS_TARGET_SRCROOT)" 12 | USE_HEADERMAP = NO 13 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 14 | -------------------------------------------------------------------------------- /Pods/Target Support Files/abseil/abseil.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_SEARCH_USER_PATHS = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/abseil 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -l"c++" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/abseil 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USER_HEADER_SEARCH_PATHS = $(inherited) "$(PODS_TARGET_SRCROOT)" 12 | USE_HEADERMAP = NO 13 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 14 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-COVIDWatch iOS-COVIDWatch iOSUITests/Pods-COVIDWatch iOS-COVIDWatch iOSUITests-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${PODS_ROOT}/Target Support Files/Pods-CovidWatch iOS-CovidWatch iOSUITests/Pods-CovidWatch iOS-CovidWatch iOSUITests-frameworks.sh 2 | ${BUILT_PRODUCTS_DIR}/BoringSSL-GRPC/openssl_grpc.framework 3 | ${BUILT_PRODUCTS_DIR}/GoogleUtilities/GoogleUtilities.framework 4 | ${BUILT_PRODUCTS_DIR}/PromisesObjC/FBLPromises.framework 5 | ${BUILT_PRODUCTS_DIR}/abseil/absl.framework 6 | ${BUILT_PRODUCTS_DIR}/gRPC-C++/grpcpp.framework 7 | ${BUILT_PRODUCTS_DIR}/gRPC-Core/grpc.framework 8 | ${BUILT_PRODUCTS_DIR}/leveldb-library/leveldb.framework 9 | ${BUILT_PRODUCTS_DIR}/nanopb/nanopb.framework -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-COVIDWatch iOS-COVIDWatch iOSUITests/Pods-COVIDWatch iOS-COVIDWatch iOSUITests-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- 1 | ${PODS_ROOT}/Target Support Files/Pods-CovidWatch iOS-CovidWatch iOSUITests/Pods-CovidWatch iOS-CovidWatch iOSUITests-frameworks.sh 2 | ${BUILT_PRODUCTS_DIR}/BoringSSL-GRPC/openssl_grpc.framework 3 | ${BUILT_PRODUCTS_DIR}/GoogleUtilities/GoogleUtilities.framework 4 | ${BUILT_PRODUCTS_DIR}/PromisesObjC/FBLPromises.framework 5 | ${BUILT_PRODUCTS_DIR}/abseil/absl.framework 6 | ${BUILT_PRODUCTS_DIR}/gRPC-C++/grpcpp.framework 7 | ${BUILT_PRODUCTS_DIR}/gRPC-Core/grpc.framework 8 | ${BUILT_PRODUCTS_DIR}/leveldb-library/leveldb.framework 9 | ${BUILT_PRODUCTS_DIR}/nanopb/nanopb.framework -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/crypto/x509/charmap.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Auto generated with chartype.pl script. Mask of various character 3 | * properties 4 | */ 5 | 6 | static const unsigned char char_type[] = { 7 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 9 | 120, 0, 1, 40, 0, 0, 0, 16, 16, 16, 0, 25, 25, 16, 16, 16, 10 | 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 9, 9, 16, 9, 16, 11 | 0, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 12 | 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 0, 1, 0, 0, 0, 13 | 0, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14 | 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 0, 0, 0, 0, 2 15 | }; 16 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/crypto/x509/charmap.h.grpc_back: -------------------------------------------------------------------------------- 1 | /* 2 | * Auto generated with chartype.pl script. Mask of various character 3 | * properties 4 | */ 5 | 6 | static const unsigned char char_type[] = { 7 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 8 | 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 9 | 120, 0, 1, 40, 0, 0, 0, 16, 16, 16, 0, 25, 25, 16, 16, 16, 10 | 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 9, 9, 16, 9, 16, 11 | 0, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 12 | 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 0, 1, 0, 0, 0, 13 | 0, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 14 | 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 0, 0, 0, 0, 2 15 | }; 16 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseAuthInterop/FirebaseAuthInterop.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuthInterop 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseAuthInterop" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/FirebaseAuthInterop 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /CovidWatch iOS/StringStorage/AccessibilityLabel.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AccessibilityLabel.swift 3 | // CovidWatch 4 | // 5 | // Created by Hayden Riddiford on 4/16/20. 6 | // 7 | // 8 | 9 | import Foundation 10 | 11 | /** 12 | A centralized place to store strings for accessibility labels for applicaiton and UI testing use. 13 | These will be read to the user so must be localized. 14 | */ 15 | 16 | enum AccessibilityLabel { 17 | 18 | // MARK: Splash page 19 | static let startButton = NSLocalizedString("Start", comment: "Accessibility for start button") 20 | 21 | // MARK: Bluetooth page 22 | static let allowButton = NSLocalizedString("Allow Bluetooth", comment: "Accessibility for allow bluetooth button") 23 | } 24 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseAuthInterop/FirebaseAuthInterop.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseAuthInterop 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseAuthInterop" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/FirebaseAuthInterop 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" 3 | GCC_C_LANGUAGE_STANDARD = c99 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_TARGET_SRCROOT}" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT} 9 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/GoogleUtilities 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" 3 | GCC_C_LANGUAGE_STANDARD = c99 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_TARGET_SRCROOT}" 6 | PODS_BUILD_DIR = ${BUILD_DIR} 7 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_ROOT = ${SRCROOT} 9 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/GoogleUtilities 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Pods/abseil/absl/time/internal/get_current_time_posix.inc: -------------------------------------------------------------------------------- 1 | #include "absl/time/clock.h" 2 | 3 | #include 4 | #include 5 | #include 6 | 7 | #include "absl/base/internal/raw_logging.h" 8 | 9 | namespace absl { 10 | inline namespace lts_2019_08_08 { 11 | namespace time_internal { 12 | 13 | static int64_t GetCurrentTimeNanosFromSystem() { 14 | const int64_t kNanosPerSecond = 1000 * 1000 * 1000; 15 | struct timespec ts; 16 | ABSL_RAW_CHECK(clock_gettime(CLOCK_REALTIME, &ts) == 0, 17 | "Failed to read real-time clock."); 18 | return (int64_t{ts.tv_sec} * kNanosPerSecond + 19 | int64_t{ts.tv_nsec}); 20 | } 21 | 22 | } // namespace time_internal 23 | } // inline namespace lts_2019_08_08 24 | } // namespace absl 25 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCoreDiagnosticsInterop/FirebaseCoreDiagnosticsInterop.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnosticsInterop 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/FirebaseCoreDiagnosticsInterop 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /CovidWatch iOS/Data/SignedReport+TCN.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Zsombor Szabo on 05/04/2020. 3 | // 4 | 5 | import Foundation 6 | import TCNClient 7 | 8 | extension SignedReport { 9 | 10 | func configure(with tcnSignedReport: TCNClient.SignedReport) { 11 | memoType = Int16(tcnSignedReport.report.memoType.rawValue) 12 | memoData = tcnSignedReport.report.memoData 13 | startIndex = Int16(tcnSignedReport.report.startIndex) 14 | endIndex = Int16(tcnSignedReport.report.endIndex) 15 | temporaryContactKeyBytes = tcnSignedReport.report.temporaryContactKeyBytes 16 | reportVerificationPublicKeyBytes = tcnSignedReport.report.reportVerificationPublicKeyBytes 17 | signatureBytes = tcnSignedReport.signatureBytes 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCoreDiagnosticsInterop/FirebaseCoreDiagnosticsInterop.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/FirebaseCoreDiagnosticsInterop 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/FirebaseCoreDiagnosticsInterop" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/FirebaseCoreDiagnosticsInterop 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /CovidWatch iOS/Crypto/KeyStoreError.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright © 2019 Apple Inc., IZE Ltd. and the project authors 3 | // Licensed under MIT License 4 | // 5 | // See LICENSE.txt for license information. 6 | // 7 | 8 | import Foundation 9 | 10 | /// An error we can throw when something goes wrong. 11 | struct KeyStoreError: Error, CustomStringConvertible { 12 | var message: String 13 | 14 | init(_ message: String) { 15 | self.message = message 16 | } 17 | 18 | public var description: String { 19 | return message 20 | } 21 | } 22 | 23 | extension OSStatus { 24 | 25 | /// A human readable message for the status. 26 | var message: String { 27 | return (SecCopyErrorMessageString(self, nil) as String?) ?? String(self) 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Pods/Target Support Files/leveldb-library/leveldb-library-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | #import "c.h" 14 | #import "cache.h" 15 | #import "comparator.h" 16 | #import "db.h" 17 | #import "dumpfile.h" 18 | #import "env.h" 19 | #import "export.h" 20 | #import "filter_policy.h" 21 | #import "iterator.h" 22 | #import "options.h" 23 | #import "slice.h" 24 | #import "status.h" 25 | #import "table.h" 26 | #import "table_builder.h" 27 | #import "write_batch.h" 28 | 29 | FOUNDATION_EXPORT double leveldbVersionNumber; 30 | FOUNDATION_EXPORT const unsigned char leveldbVersionString[]; 31 | 32 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/cpp/common/rpc_method.cc: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #include 20 | 21 | namespace grpc {} // namespace grpc 22 | -------------------------------------------------------------------------------- /Pods/FirebaseFirestore/Firestore/core/src/firebase/firestore/remote/grpc_root_certificates_generated.h: -------------------------------------------------------------------------------- 1 | // Copyright 2019 Google Inc. All Rights Reserved. 2 | 3 | #ifndef FIRESTORE_CORE_SRC_FIREBASE_FIRESTORE_REMOTE_GRPC_ROOT_CERTIFICATES_GENERATED_H_ 4 | #define FIRESTORE_CORE_SRC_FIREBASE_FIRESTORE_REMOTE_GRPC_ROOT_CERTIFICATES_GENERATED_H_ 5 | 6 | #include 7 | 8 | namespace firebase { 9 | namespace firestore { 10 | namespace remote { 11 | 12 | extern const size_t grpc_root_certificates_generated_size; 13 | extern const unsigned char grpc_root_certificates_generated_data[]; 14 | extern const char roots_filename[]; 15 | 16 | } // namespace remote 17 | } // namespace firestore 18 | } // namespace firebase 19 | 20 | #endif // FIRESTORE_CORE_SRC_FIREBASE_FIRESTORE_REMOTE_GRPC_ROOT_CERTIFICATES_GENERATED_H_ 21 | -------------------------------------------------------------------------------- /Pods/PromisesObjC/Sources/FBLPromises/FBLPromiseError.m: -------------------------------------------------------------------------------- 1 | /** 2 | Copyright 2018 Google Inc. All rights reserved. 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 | #import "FBLPromiseError.h" 18 | 19 | NSErrorDomain const FBLPromiseErrorDomain = @"com.google.FBLPromises.Error"; 20 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport 3 | GCC_C_LANGUAGE_STANDARD = c99 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 GDTCOR_VERSION=6.0.0 5 | GCC_TREAT_WARNINGS_AS_ERRORS = YES 6 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_TARGET_SRCROOT}/GoogleDataTransport/" 7 | PODS_BUILD_DIR = ${BUILD_DIR} 8 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 9 | PODS_ROOT = ${SRCROOT} 10 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/GoogleDataTransport 11 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 12 | SKIP_INSTALL = YES 13 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 14 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GoogleDataTransport 3 | GCC_C_LANGUAGE_STANDARD = c99 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 GDTCOR_VERSION=6.0.0 5 | GCC_TREAT_WARNINGS_AS_ERRORS = YES 6 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_TARGET_SRCROOT}/GoogleDataTransport/" 7 | PODS_BUILD_DIR = ${BUILD_DIR} 8 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 9 | PODS_ROOT = ${SRCROOT} 10 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/GoogleDataTransport 11 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 12 | SKIP_INSTALL = YES 13 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 14 | -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2017 Google 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 | #import "FIRApp.h" 18 | #import "FIRConfiguration.h" 19 | #import "FIRLoggerLevel.h" 20 | #import "FIROptions.h" 21 | -------------------------------------------------------------------------------- /Pods/leveldb-library/port/port.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2011 The LevelDB Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. See the AUTHORS file for names of contributors. 4 | 5 | #ifndef STORAGE_LEVELDB_PORT_PORT_H_ 6 | #define STORAGE_LEVELDB_PORT_PORT_H_ 7 | 8 | #include 9 | 10 | // Include the appropriate platform specific file below. If you are 11 | // porting to a new platform, see "port_example.h" for documentation 12 | // of what the new port_.h file must provide. 13 | #if defined(LEVELDB_PLATFORM_POSIX) || defined(LEVELDB_PLATFORM_WINDOWS) 14 | #include "port/port_stdcxx.h" 15 | #elif defined(LEVELDB_PLATFORM_CHROMIUM) 16 | #include "port/port_chromium.h" 17 | #endif 18 | 19 | #endif // STORAGE_LEVELDB_PORT_PORT_H_ 20 | -------------------------------------------------------------------------------- /CovidWatch iOSTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /CovidWatch iOSUITests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/impl/call.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_IMPL_CALL_H 20 | #define GRPCPP_IMPL_CALL_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_IMPL_CALL_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/cpp/util/string_ref.cc: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #include 20 | 21 | namespace grpc { 22 | 23 | const size_t string_ref::npos = size_t(-1); 24 | 25 | } // namespace grpc 26 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.c: -------------------------------------------------------------------------------- 1 | /* Automatically generated nanopb constant definitions */ 2 | /* Generated by nanopb-0.3.7-dev */ 3 | 4 | #include "src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/duration.pb.h" 5 | /* @@protoc_insertion_point(includes) */ 6 | #if PB_PROTO_HEADER_VERSION != 30 7 | #error Regenerate this file with the current version of nanopb generator. 8 | #endif 9 | 10 | 11 | 12 | const pb_field_t google_protobuf_Duration_fields[3] = { 13 | PB_FIELD( 1, INT64 , OPTIONAL, STATIC , FIRST, google_protobuf_Duration, seconds, seconds, 0), 14 | PB_FIELD( 2, INT32 , OPTIONAL, STATIC , OTHER, google_protobuf_Duration, nanos, seconds, 0), 15 | PB_LAST_FIELD 16 | }; 17 | 18 | 19 | /* @@protoc_insertion_point(eof) */ 20 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/time.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_SUPPORT_TIME_H 20 | #define GRPCPP_SUPPORT_TIME_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_TIME_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.c: -------------------------------------------------------------------------------- 1 | /* Automatically generated nanopb constant definitions */ 2 | /* Generated by nanopb-0.3.7-dev */ 3 | 4 | #include "src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/timestamp.pb.h" 5 | /* @@protoc_insertion_point(includes) */ 6 | #if PB_PROTO_HEADER_VERSION != 30 7 | #error Regenerate this file with the current version of nanopb generator. 8 | #endif 9 | 10 | 11 | 12 | const pb_field_t google_protobuf_Timestamp_fields[3] = { 13 | PB_FIELD( 1, INT64 , OPTIONAL, STATIC , FIRST, google_protobuf_Timestamp, seconds, seconds, 0), 14 | PB_FIELD( 2, INT32 , OPTIONAL, STATIC , OTHER, google_protobuf_Timestamp, nanos, seconds, 0), 15 | PB_LAST_FIELD 16 | }; 17 | 18 | 19 | /* @@protoc_insertion_point(eof) */ 20 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpc/fork.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2017 gRPC authors. 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 | 19 | #ifndef GRPC_FORK_H 20 | #define GRPC_FORK_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_FORK_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/config.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_SUPPORT_CONFIG_H 20 | #define GRPCPP_SUPPORT_CONFIG_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_CONFIG_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/status.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_SUPPORT_STATUS_H 20 | #define GRPCPP_SUPPORT_STATUS_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_STATUS_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/fork.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2017 gRPC authors. 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 | 19 | #ifndef GRPC_FORK_H 20 | #define GRPC_FORK_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_FORK_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpc/status.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_STATUS_H 20 | #define GRPC_STATUS_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_STATUS_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/impl/rpc_method.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_IMPL_RPC_METHOD_H 20 | #define GRPCPP_IMPL_RPC_METHOD_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_IMPL_RPC_METHOD_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/server_context.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_SERVER_CONTEXT_H 20 | #define GRPCPP_SERVER_CONTEXT_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SERVER_CONTEXT_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/status.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_STATUS_H 20 | #define GRPC_STATUS_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_STATUS_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/cpp/server/server_credentials.cc: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #include 20 | 21 | namespace grpc_impl { 22 | 23 | ServerCredentials::~ServerCredentials() {} 24 | 25 | } // namespace grpc_impl 26 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/completion_queue.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_COMPLETION_QUEUE_H 20 | #define GRPCPP_COMPLETION_QUEUE_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_COMPLETION_QUEUE_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/impl/service_type.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_IMPL_SERVICE_TYPE_H 20 | #define GRPCPP_IMPL_SERVICE_TYPE_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_IMPL_SERVICE_TYPE_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/string_ref.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_SUPPORT_STRING_REF_H 20 | #define GRPCPP_SUPPORT_STRING_REF_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_STRING_REF_H 25 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment the next line to define a global platform for your project 2 | platform :ios, '12.0' 3 | 4 | target 'CovidWatch iOS' do 5 | # Comment the next line if you don't want to use dynamic frameworks 6 | use_frameworks! 7 | 8 | # Pods for CovidWatch 9 | pod 'Firebase/Firestore' 10 | pod 'FirebaseFirestoreSwift' 11 | 12 | # Dev Tooling 13 | pod 'SwiftLint' 14 | 15 | target 'CovidWatch iOSTests' do 16 | inherit! :search_paths 17 | # Pods for testing 18 | end 19 | 20 | target 'CovidWatch iOSUITests' do 21 | # Pods for testing 22 | end 23 | 24 | end 25 | 26 | post_install do |installer| 27 | installer.pods_project.targets.each do |target| 28 | if ['FirebaseFirestoreSwift'].include? target.name 29 | target.build_configurations.each do |config| 30 | config.build_settings['SWIFT_VERSION'] = '5.0' 31 | end 32 | end 33 | end 34 | end 35 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpc/support/port_platform.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_PORT_PLATFORM_H 20 | #define GRPC_SUPPORT_PORT_PLATFORM_H 21 | 22 | #include 23 | 24 | #endif /* GRPC_SUPPORT_PORT_PLATFORM_H */ 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/interceptor.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_SUPPORT_INTERCEPTOR_H 20 | #define GRPCPP_SUPPORT_INTERCEPTOR_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_INTERCEPTOR_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/sync_stream.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_SUPPORT_SYNC_STREAM_H 20 | #define GRPCPP_SUPPORT_SYNC_STREAM_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_SYNC_STREAM_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpc/support/atm.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_ATM_H 20 | #define GRPC_SUPPORT_ATM_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_SUPPORT_ATM_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpc/support/log.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_LOG_H 20 | #define GRPC_SUPPORT_LOG_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_SUPPORT_LOG_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/async_stream.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_SUPPORT_ASYNC_STREAM_H 20 | #define GRPCPP_SUPPORT_ASYNC_STREAM_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_ASYNC_STREAM_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/stub_options.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_SUPPORT_STUB_OPTIONS_H 20 | #define GRPCPP_SUPPORT_STUB_OPTIONS_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_STUB_OPTIONS_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/support/atm.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_ATM_H 20 | #define GRPC_SUPPORT_ATM_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_SUPPORT_ATM_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/support/log.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_LOG_H 20 | #define GRPC_SUPPORT_LOG_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_SUPPORT_LOG_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/support/port_platform.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_PORT_PLATFORM_H 20 | #define GRPC_SUPPORT_PORT_PLATFORM_H 21 | 22 | #include 23 | 24 | #endif /* GRPC_SUPPORT_PORT_PLATFORM_H */ 25 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/ext/filters/client_channel/health/health.pb.c: -------------------------------------------------------------------------------- 1 | /* Automatically generated nanopb constant definitions */ 2 | /* Generated by nanopb-0.3.7-dev */ 3 | 4 | #include "src/core/ext/filters/client_channel/health/health.pb.h" 5 | /* @@protoc_insertion_point(includes) */ 6 | #if PB_PROTO_HEADER_VERSION != 30 7 | #error Regenerate this file with the current version of nanopb generator. 8 | #endif 9 | 10 | 11 | 12 | const pb_field_t grpc_health_v1_HealthCheckRequest_fields[2] = { 13 | PB_FIELD( 1, STRING , OPTIONAL, STATIC , FIRST, grpc_health_v1_HealthCheckRequest, service, service, 0), 14 | PB_LAST_FIELD 15 | }; 16 | 17 | const pb_field_t grpc_health_v1_HealthCheckResponse_fields[2] = { 18 | PB_FIELD( 1, UENUM , OPTIONAL, STATIC , FIRST, grpc_health_v1_HealthCheckResponse, status, status, 0), 19 | PB_LAST_FIELD 20 | }; 21 | 22 | 23 | /* @@protoc_insertion_point(eof) */ 24 | -------------------------------------------------------------------------------- /CovidWatch iOS/StringStorage/AccessibilityIdentifier.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AccessibilityIdentifier.swift 3 | // CovidWatch 4 | // 5 | // Created by Hayden Riddiford on 4/16/20. 6 | // 7 | // 8 | 9 | import Foundation 10 | 11 | /** 12 | A centralized place to store strings for accessibility identifiers for applicaiton and UI testing use. 13 | These will not be read to the user so don't need to be localized. 14 | */ 15 | 16 | enum AccessibilityIdentifier: String { 17 | case 18 | 19 | // MARK: Splash page 20 | TitleLogo = "Title", 21 | StartButton = "Start", 22 | DescriptionText = "Description", 23 | 24 | // MARK: Bluetooth page 25 | LargeText = "large-text", 26 | MainText = "main-text", 27 | AllowButton = "allow-button", 28 | 29 | // MARK: UI Elements 30 | Content = "content", 31 | SubText = "sub-text", 32 | ButtonText = "button-text" 33 | 34 | } 35 | -------------------------------------------------------------------------------- /Pods/Target Support Files/gRPC-C++/ResourceBundle-gRPCCertificates-Cpp-gRPC-C++-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleIdentifier 8 | ${PRODUCT_BUNDLE_IDENTIFIER} 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | ${PRODUCT_NAME} 13 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 0.0.9 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/alarm.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2018 gRPC authors. 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 | 19 | #ifndef GRPCPP_ALARM_H 20 | #define GRPCPP_ALARM_H 21 | 22 | #include 23 | 24 | namespace grpc { 25 | 26 | typedef ::grpc_impl::Alarm Alarm; 27 | } 28 | 29 | #endif // GRPCPP_ALARM_H 30 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/surface/api_trace.cc: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #include 20 | 21 | #include "src/core/lib/debug/trace.h" 22 | #include "src/core/lib/surface/api_trace.h" 23 | 24 | grpc_core::TraceFlag grpc_api_trace(false, "api"); 25 | -------------------------------------------------------------------------------- /Pods/FirebaseFirestore/Firestore/Source/API/FIRFirestoreVersion.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2017 Google 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 | /** Version for Firestore. */ 18 | 19 | #import 20 | 21 | /** Version string for the Firebase Firestore SDK. */ 22 | FOUNDATION_EXPORT const char *const FIRFirestoreVersionString; 23 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/cpp/util/status.cc: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #include 20 | 21 | namespace grpc { 22 | 23 | const Status& Status::OK = Status(); 24 | const Status& Status::CANCELLED = Status(StatusCode::CANCELLED, ""); 25 | 26 | } // namespace grpc 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/impl/client_unary_call.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_IMPL_CLIENT_UNARY_CALL_H 20 | #define GRPCPP_IMPL_CLIENT_UNARY_CALL_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_IMPL_CLIENT_UNARY_CALL_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/security/auth_context.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_SECURITY_AUTH_CONTEXT_H 20 | #define GRPCPP_SECURITY_AUTH_CONTEXT_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SECURITY_AUTH_CONTEXT_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/client_callback.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2018 gRPC authors. 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 | 19 | #ifndef GRPCPP_SUPPORT_CLIENT_CALLBACK_H 20 | #define GRPCPP_SUPPORT_CLIENT_CALLBACK_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_CLIENT_CALLBACK_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/server_callback.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2018 gRPC authors. 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 | 19 | #ifndef GRPCPP_SUPPORT_SERVER_CALLBACK_H 20 | #define GRPCPP_SUPPORT_SERVER_CALLBACK_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_SERVER_CALLBACK_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/surface/api_trace.cc.grpc_back: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #include 20 | 21 | #include "src/core/lib/debug/trace.h" 22 | #include "src/core/lib/surface/api_trace.h" 23 | 24 | grpc_core::TraceFlag grpc_api_trace(false, "api"); 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/impl/rpc_service_method.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2016 gRPC authors. 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 | 19 | #ifndef GRPCPP_IMPL_RPC_SERVICE_METHOD_H 20 | #define GRPCPP_IMPL_RPC_SERVICE_METHOD_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_IMPL_RPC_SERVICE_METHOD_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/async_unary_call.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_SUPPORT_ASYNC_UNARY_CALL_H 20 | #define GRPCPP_SUPPORT_ASYNC_UNARY_CALL_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_ASYNC_UNARY_CALL_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/status_code_enum.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_SUPPORT_STATUS_CODE_ENUM_H 20 | #define GRPCPP_SUPPORT_STATUS_CODE_ENUM_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_STATUS_CODE_ENUM_H 25 | -------------------------------------------------------------------------------- /Pods/Target Support Files/leveldb-library/leveldb-library.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 LEVELDB_IS_BIG_ENDIAN=0 LEVELDB_PLATFORM_POSIX HAVE_FULLFSYNC=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/leveldb-library" "${PODS_ROOT}/leveldb-library/include" 4 | OTHER_LDFLAGS = $(inherited) -l"c++" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/leveldb-library 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_HEADERMAP = No 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | WARNING_CFLAGS = -Wno-shorten-64-to-32 -Wno-comma -Wno-unreachable-code -Wno-conditional-uninitialized -Wno-deprecated-declarations 14 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/impl/method_handler_impl.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_IMPL_METHOD_HANDLER_IMPL_H 20 | #define GRPCPP_IMPL_METHOD_HANDLER_IMPL_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_IMPL_METHOD_HANDLER_IMPL_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/message_allocator.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2019 gRPC authors. 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 | 19 | #ifndef GRPCPP_SUPPORT_MESSAGE_ALLOCATOR_H 20 | #define GRPCPP_SUPPORT_MESSAGE_ALLOCATOR_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_MESSAGE_ALLOCATOR_H 25 | -------------------------------------------------------------------------------- /Pods/leveldb-library/util/env_windows_test_helper.h: -------------------------------------------------------------------------------- 1 | // Copyright 2018 (c) The LevelDB Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. See the AUTHORS file for names of contributors. 4 | 5 | #ifndef STORAGE_LEVELDB_UTIL_ENV_WINDOWS_TEST_HELPER_H_ 6 | #define STORAGE_LEVELDB_UTIL_ENV_WINDOWS_TEST_HELPER_H_ 7 | 8 | namespace leveldb { 9 | 10 | class EnvWindowsTest; 11 | 12 | // A helper for the Windows Env to facilitate testing. 13 | class EnvWindowsTestHelper { 14 | private: 15 | friend class CorruptionTest; 16 | friend class EnvWindowsTest; 17 | 18 | // Set the maximum number of read-only files that will be mapped via mmap. 19 | // Must be called before creating an Env. 20 | static void SetReadOnlyMMapLimit(int limit); 21 | }; 22 | 23 | } // namespace leveldb 24 | 25 | #endif // STORAGE_LEVELDB_UTIL_ENV_WINDOWS_TEST_HELPER_H_ 26 | -------------------------------------------------------------------------------- /Pods/Target Support Files/leveldb-library/leveldb-library.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/leveldb-library 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 LEVELDB_IS_BIG_ENDIAN=0 LEVELDB_PLATFORM_POSIX HAVE_FULLFSYNC=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/leveldb-library" "${PODS_ROOT}/leveldb-library/include" 4 | OTHER_LDFLAGS = $(inherited) -l"c++" 5 | PODS_BUILD_DIR = ${BUILD_DIR} 6 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/leveldb-library 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_HEADERMAP = No 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | WARNING_CFLAGS = -Wno-shorten-64-to-32 -Wno-comma -Wno-unreachable-code -Wno-conditional-uninitialized -Wno-deprecated-declarations 14 | -------------------------------------------------------------------------------- /Pods/abseil/absl/numeric/int128_have_intrinsic.inc: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2017 The Abseil Authors. 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 | // https://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 | // This file contains :int128 implementation details that depend on internal 17 | // representation when ABSL_HAVE_INTRINSIC_INT128 is defined. This file is 18 | // included by int128.h and relies on ABSL_INTERNAL_WCHAR_T being defined. 19 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/impl/serialization_traits.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_IMPL_SERIALIZATION_TRAITS_H 20 | #define GRPCPP_IMPL_SERIALIZATION_TRAITS_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_IMPL_SERIALIZATION_TRAITS_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/client_interceptor.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_SUPPORT_CLIENT_INTERCEPTOR_H 20 | #define GRPCPP_SUPPORT_CLIENT_INTERCEPTOR_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_CLIENT_INTERCEPTOR_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/server_interceptor.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_SUPPORT_SERVER_INTERCEPTOR_H 20 | #define GRPCPP_SUPPORT_SERVER_INTERCEPTOR_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_SERVER_INTERCEPTOR_H 25 | -------------------------------------------------------------------------------- /Pods/abseil/absl/numeric/int128_no_intrinsic.inc: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright 2017 The Abseil Authors. 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 | // https://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 | // This file contains :int128 implementation details that depend on internal 17 | // representation when ABSL_HAVE_INTRINSIC_INT128 is *not* defined. This file 18 | // is included by int128.h and relies on ABSL_INTERNAL_WCHAR_T being defined. 19 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpc/support/sync_posix.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_SYNC_POSIX_H 20 | #define GRPC_SUPPORT_SYNC_POSIX_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_SUPPORT_SYNC_POSIX_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/server.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2019 gRPC authors. 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 | 19 | #ifndef GRPCPP_SERVER_H 20 | #define GRPCPP_SERVER_H 21 | 22 | #include 23 | 24 | namespace grpc { 25 | 26 | typedef ::grpc_impl::Server Server; 27 | 28 | } // namespace grpc 29 | 30 | #endif // GRPCPP_SERVER_H 31 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/proto_buffer_reader.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2018 gRPC authors. 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 | 19 | #ifndef GRPCPP_SUPPORT_PROTO_BUFFER_READER_H 20 | #define GRPCPP_SUPPORT_PROTO_BUFFER_READER_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_PROTO_BUFFER_READER_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/proto_buffer_writer.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2018 gRPC authors. 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 | 19 | #ifndef GRPCPP_SUPPORT_PROTO_BUFFER_WRITER_H 20 | #define GRPCPP_SUPPORT_PROTO_BUFFER_WRITER_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_PROTO_BUFFER_WRITER_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/slice.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPCPP_SUPPORT_SLICE_H 20 | #define GRPCPP_SUPPORT_SLICE_H 21 | 22 | #include 23 | #include 24 | #include 25 | 26 | #endif // GRPCPP_SUPPORT_SLICE_H 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/cpp/common/version_cc.cc: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2016 gRPC authors. 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 | 19 | /* This file is autogenerated from: 20 | templates/src/core/surface/version.c.template */ 21 | 22 | #include 23 | 24 | namespace grpc { 25 | grpc::string Version() { return "1.21.0"; } 26 | } // namespace grpc 27 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/support/sync_posix.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_SYNC_POSIX_H 20 | #define GRPC_SUPPORT_SYNC_POSIX_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_SUPPORT_SYNC_POSIX_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpc/byte_buffer.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_BYTE_BUFFER_H 20 | #define GRPC_BYTE_BUFFER_H 21 | 22 | #include 23 | 24 | #include 25 | #include 26 | 27 | #endif /* GRPC_BYTE_BUFFER_H */ 28 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpc/byte_buffer_reader.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_BYTE_BUFFER_READER_H 20 | #define GRPC_BYTE_BUFFER_READER_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_BYTE_BUFFER_READER_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpc/support/atm_windows.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_ATM_WINDOWS_H 20 | #define GRPC_SUPPORT_ATM_WINDOWS_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_SUPPORT_ATM_WINDOWS_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpc/support/sync_custom.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2017 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_SYNC_CUSTOM_H 20 | #define GRPC_SUPPORT_SYNC_CUSTOM_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_SUPPORT_SYNC_CUSTOM_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/byte_buffer_reader.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_BYTE_BUFFER_READER_H 20 | #define GRPC_BYTE_BUFFER_READER_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_BYTE_BUFFER_READER_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/support/atm_windows.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_ATM_WINDOWS_H 20 | #define GRPC_SUPPORT_ATM_WINDOWS_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_SUPPORT_ATM_WINDOWS_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/support/sync_custom.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2017 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_SYNC_CUSTOM_H 20 | #define GRPC_SUPPORT_SYNC_CUSTOM_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_SUPPORT_SYNC_CUSTOM_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpc/support/atm_gcc_sync.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_ATM_GCC_SYNC_H 20 | #define GRPC_SUPPORT_ATM_GCC_SYNC_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_SUPPORT_ATM_GCC_SYNC_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpc/support/sync_generic.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_SYNC_GENERIC_H 20 | #define GRPC_SUPPORT_SYNC_GENERIC_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_SUPPORT_SYNC_GENERIC_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpc/support/sync_windows.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_SYNC_WINDOWS_H 20 | #define GRPC_SUPPORT_SYNC_WINDOWS_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_SUPPORT_SYNC_WINDOWS_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/generic/async_generic_service.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2018 gRPC authors. 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 | 19 | #ifndef GRPCPP_GENERIC_ASYNC_GENERIC_SERVICE_H 20 | #define GRPCPP_GENERIC_ASYNC_GENERIC_SERVICE_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_GENERIC_ASYNC_GENERIC_SERVICE_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/byte_buffer.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_BYTE_BUFFER_H 20 | #define GRPC_BYTE_BUFFER_H 21 | 22 | #include 23 | 24 | #include 25 | #include 26 | 27 | #endif /* GRPC_BYTE_BUFFER_H */ 28 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/support/atm_gcc_sync.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_ATM_GCC_SYNC_H 20 | #define GRPC_SUPPORT_ATM_GCC_SYNC_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_SUPPORT_ATM_GCC_SYNC_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/support/sync_generic.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_SYNC_GENERIC_H 20 | #define GRPC_SUPPORT_SYNC_GENERIC_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_SUPPORT_SYNC_GENERIC_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/support/sync_windows.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_SYNC_WINDOWS_H 20 | #define GRPC_SUPPORT_SYNC_WINDOWS_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_SUPPORT_SYNC_WINDOWS_H */ 27 | -------------------------------------------------------------------------------- /Pods/leveldb-library/db/db_iter.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2011 The LevelDB Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. See the AUTHORS file for names of contributors. 4 | 5 | #ifndef STORAGE_LEVELDB_DB_DB_ITER_H_ 6 | #define STORAGE_LEVELDB_DB_DB_ITER_H_ 7 | 8 | #include 9 | 10 | #include "db/dbformat.h" 11 | #include "leveldb/db.h" 12 | 13 | namespace leveldb { 14 | 15 | class DBImpl; 16 | 17 | // Return a new iterator that converts internal keys (yielded by 18 | // "*internal_iter") that were live at the specified "sequence" number 19 | // into appropriate user keys. 20 | Iterator* NewDBIterator(DBImpl* db, const Comparator* user_key_comparator, 21 | Iterator* internal_iter, SequenceNumber sequence, 22 | uint32_t seed); 23 | 24 | } // namespace leveldb 25 | 26 | #endif // STORAGE_LEVELDB_DB_DB_ITER_H_ 27 | -------------------------------------------------------------------------------- /Pods/FirebaseFirestoreSwift/Firestore/Swift/Source/Codable/CodableErrors.swift: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2019 Google 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 | public enum FirestoreDecodingError: Error { 18 | case decodingIsNotSupported(String) 19 | case fieldNameConfict(String) 20 | } 21 | 22 | public enum FirestoreEncodingError: Error { 23 | case encodingIsNotSupported(String) 24 | } 25 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/include/openssl/dtls1.h: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015, Google Inc. 2 | * 3 | * Permission to use, copy, modify, and/or distribute this software for any 4 | * purpose with or without fee is hereby granted, provided that the above 5 | * copyright notice and this permission notice appear in all copies. 6 | * 7 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 10 | * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 12 | * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 13 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ 14 | 15 | /* This header is provided in order to make compiling against code that expects 16 | OpenSSL easier. */ 17 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/include/openssl/is_boringssl.h: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2017, Google Inc. 2 | * 3 | * Permission to use, copy, modify, and/or distribute this software for any 4 | * purpose with or without fee is hereby granted, provided that the above 5 | * copyright notice and this permission notice appear in all copies. 6 | * 7 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 10 | * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 12 | * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 13 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ 14 | 15 | // This header is provided in order to catch include path errors in consuming 16 | // BoringSSL. 17 | -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/FIRVersion.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2017 Google 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 | #import 18 | 19 | /** The version of the Firebase SDK. */ 20 | FOUNDATION_EXPORT const char *const FIRVersionString; 21 | 22 | /** The version of the FirebaseCore Component. */ 23 | FOUNDATION_EXPORT const char *const FIRCoreVersionString; 24 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpc/support/atm_gcc_atomic.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_ATM_GCC_ATOMIC_H 20 | #define GRPC_SUPPORT_ATM_GCC_ATOMIC_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_SUPPORT_ATM_GCC_ATOMIC_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/include/grpc/support/atm_gcc_atomic.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_SUPPORT_ATM_GCC_ATOMIC_H 20 | #define GRPC_SUPPORT_ATM_GCC_ATOMIC_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_SUPPORT_ATM_GCC_ATOMIC_H */ 27 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/include/openssl/safestack.h: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2014, Google Inc. 2 | * 3 | * Permission to use, copy, modify, and/or distribute this software for any 4 | * purpose with or without fee is hereby granted, provided that the above 5 | * copyright notice and this permission notice appear in all copies. 6 | * 7 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 10 | * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 12 | * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 13 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ 14 | 15 | /* This header is provided in order to make compiling against code that expects 16 | OpenSSL easier. */ 17 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/iomgr_posix.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_CORE_LIB_IOMGR_IOMGR_POSIX_H 20 | #define GRPC_CORE_LIB_IOMGR_IOMGR_POSIX_H 21 | 22 | #include 23 | 24 | #include "src/core/lib/iomgr/iomgr_internal.h" 25 | 26 | #endif /* GRPC_CORE_LIB_IOMGR_IOMGR_POSIX_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/iomgr_posix.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_CORE_LIB_IOMGR_IOMGR_POSIX_H 20 | #define GRPC_CORE_LIB_IOMGR_IOMGR_POSIX_H 21 | 22 | #include 23 | 24 | #include "src/core/lib/iomgr/iomgr_internal.h" 25 | 26 | #endif /* GRPC_CORE_LIB_IOMGR_IOMGR_POSIX_H */ 27 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/include/openssl/dtls1.h.grpc_back: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015, Google Inc. 2 | * 3 | * Permission to use, copy, modify, and/or distribute this software for any 4 | * purpose with or without fee is hereby granted, provided that the above 5 | * copyright notice and this permission notice appear in all copies. 6 | * 7 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 10 | * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 12 | * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 13 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ 14 | 15 | /* This header is provided in order to make compiling against code that expects 16 | OpenSSL easier. */ 17 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/include/openssl/is_boringssl.h.grpc_back: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2017, Google Inc. 2 | * 3 | * Permission to use, copy, modify, and/or distribute this software for any 4 | * purpose with or without fee is hereby granted, provided that the above 5 | * copyright notice and this permission notice appear in all copies. 6 | * 7 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 10 | * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 12 | * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 13 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ 14 | 15 | // This header is provided in order to catch include path errors in consuming 16 | // BoringSSL. 17 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/ext/filters/client_channel/http_proxy.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2016 gRPC authors. 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 | 19 | #ifndef GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_HTTP_PROXY_H 20 | #define GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_HTTP_PROXY_H 21 | 22 | void grpc_register_http_proxy_mapper(); 23 | 24 | #endif /* GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_HTTP_PROXY_H */ 25 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/include/openssl/safestack.h.grpc_back: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2014, Google Inc. 2 | * 3 | * Permission to use, copy, modify, and/or distribute this software for any 4 | * purpose with or without fee is hereby granted, provided that the above 5 | * copyright notice and this permission notice appear in all copies. 6 | * 7 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 10 | * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 12 | * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 13 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ 14 | 15 | /* This header is provided in order to make compiling against code that expects 16 | OpenSSL easier. */ 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/gRPC-C++/gRPC-C++-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.0.9 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.3.9011 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/ext/filters/client_channel/http_proxy.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2016 gRPC authors. 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 | 19 | #ifndef GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_HTTP_PROXY_H 20 | #define GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_HTTP_PROXY_H 21 | 22 | void grpc_register_http_proxy_mapper(); 23 | 24 | #endif /* GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_HTTP_PROXY_H */ 25 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/iomgr_posix.h.grpc_back: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_CORE_LIB_IOMGR_IOMGR_POSIX_H 20 | #define GRPC_CORE_LIB_IOMGR_IOMGR_POSIX_H 21 | 22 | #include 23 | 24 | #include "src/core/lib/iomgr/iomgr_internal.h" 25 | 26 | #endif /* GRPC_CORE_LIB_IOMGR_IOMGR_POSIX_H */ 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/abseil/abseil-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.20190808.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/gRPC-Core/gRPC-Core-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.21.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseCore/FirebaseCore-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 6.6.7 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/PromisesObjC/PromisesObjC-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.2.8 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/gethostname.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2017 gRPC authors. 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 | 19 | #ifndef GRPC_CORE_LIB_IOMGR_GETHOSTNAME_H 20 | #define GRPC_CORE_LIB_IOMGR_GETHOSTNAME_H 21 | 22 | // Returns the hostname of the local machine. 23 | // Caller takes ownership of result. 24 | char* grpc_gethostname(); 25 | 26 | #endif /* GRPC_CORE_LIB_IOMGR_GETHOSTNAME_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/pollset_set_custom.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2018 gRPC authors. 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 | 19 | #ifndef GRPC_CORE_LIB_IOMGR_POLLSET_SET_CUSTOM_H 20 | #define GRPC_CORE_LIB_IOMGR_POLLSET_SET_CUSTOM_H 21 | 22 | #include 23 | 24 | void grpc_custom_pollset_set_init(); 25 | 26 | #endif /* GRPC_CORE_LIB_IOMGR_POLLSET_SET_CUSTOM_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/ext/filters/client_channel/http_proxy.h.grpc_back: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2016 gRPC authors. 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 | 19 | #ifndef GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_HTTP_PROXY_H 20 | #define GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_HTTP_PROXY_H 21 | 22 | void grpc_register_http_proxy_mapper(); 23 | 24 | #endif /* GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_HTTP_PROXY_H */ 25 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/pollset_set_custom.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2018 gRPC authors. 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 | 19 | #ifndef GRPC_CORE_LIB_IOMGR_POLLSET_SET_CUSTOM_H 20 | #define GRPC_CORE_LIB_IOMGR_POLLSET_SET_CUSTOM_H 21 | 22 | #include 23 | 24 | void grpc_custom_pollset_set_init(); 25 | 26 | #endif /* GRPC_CORE_LIB_IOMGR_POLLSET_SET_CUSTOM_H */ 27 | -------------------------------------------------------------------------------- /Pods/nanopb/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2011 Petteri Aimonen 2 | 3 | This software is provided 'as-is', without any express or 4 | implied warranty. In no event will the authors be held liable 5 | for any damages arising from the use of this software. 6 | 7 | Permission is granted to anyone to use this software for any 8 | purpose, including commercial applications, and to alter it and 9 | redistribute it freely, subject to the following restrictions: 10 | 11 | 1. The origin of this software must not be misrepresented; you 12 | must not claim that you wrote the original software. If you use 13 | this software in a product, an acknowledgment in the product 14 | documentation would be appreciated but is not required. 15 | 16 | 2. Altered source versions must be plainly marked as such, and 17 | must not be misrepresented as being the original software. 18 | 19 | 3. This notice may not be removed or altered from any source 20 | distribution. 21 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/include/openssl/buffer.h: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015, Google Inc. 2 | * 3 | * Permission to use, copy, modify, and/or distribute this software for any 4 | * purpose with or without fee is hereby granted, provided that the above 5 | * copyright notice and this permission notice appear in all copies. 6 | * 7 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 10 | * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 12 | * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 13 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ 14 | 15 | /* This header is provided in order to make compiling against code that expects 16 | OpenSSL easier. */ 17 | 18 | #include "buf.h" 19 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2016, Google Inc. 2 | * 3 | * Permission to use, copy, modify, and/or distribute this software for any 4 | * purpose with or without fee is hereby granted, provided that the above 5 | * copyright notice and this permission notice appear in all copies. 6 | * 7 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 10 | * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 12 | * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 13 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ 14 | 15 | /* This header is provided in order to make compiling against code that expects 16 | OpenSSL easier. */ 17 | 18 | #include "nid.h" 19 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/include/openssl/objects.h: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2014, Google Inc. 2 | * 3 | * Permission to use, copy, modify, and/or distribute this software for any 4 | * purpose with or without fee is hereby granted, provided that the above 5 | * copyright notice and this permission notice appear in all copies. 6 | * 7 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 10 | * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 12 | * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 13 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ 14 | 15 | /* This header is provided in order to make compiling against code that expects 16 | OpenSSL easier. */ 17 | 18 | #include "obj.h" 19 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2014, Google Inc. 2 | * 3 | * Permission to use, copy, modify, and/or distribute this software for any 4 | * purpose with or without fee is hereby granted, provided that the above 5 | * copyright notice and this permission notice appear in all copies. 6 | * 7 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 10 | * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 12 | * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 13 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ 14 | 15 | /* This header is provided in order to make compiling against code that expects 16 | OpenSSL easier. */ 17 | 18 | #include "pkcs8.h" 19 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/include/openssl/srtp.h: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2015, Google Inc. 2 | * 3 | * Permission to use, copy, modify, and/or distribute this software for any 4 | * purpose with or without fee is hereby granted, provided that the above 5 | * copyright notice and this permission notice appear in all copies. 6 | * 7 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 10 | * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 12 | * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 13 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ 14 | 15 | /* This header is provided in order to make compiling against code that expects 16 | OpenSSL easier. */ 17 | 18 | #include "ssl.h" 19 | -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Private/FIRErrors.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2017 Google 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 | #import 18 | 19 | #include "FIRErrorCode.h" 20 | 21 | extern NSString *const kFirebaseErrorDomain; 22 | extern NSString *const kFirebaseConfigErrorDomain; 23 | extern NSString *const kFirebaseCoreErrorDomain; 24 | extern NSString *const kFirebasePerfErrorDomain; 25 | -------------------------------------------------------------------------------- /Pods/Target Support Files/BoringSSL-GRPC/BoringSSL-GRPC-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.0.3 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 6.6.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/leveldb-library/leveldb-library-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.22.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/resource_quota.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2019 gRPC authors. 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 | 19 | #ifndef GRPCPP_RESOURCE_QUOTA_H 20 | #define GRPCPP_RESOURCE_QUOTA_H 21 | 22 | #include 23 | 24 | namespace grpc { 25 | 26 | typedef ::grpc_impl::ResourceQuota ResourceQuota; 27 | } // namespace grpc 28 | 29 | #endif // GRPCPP_RESOURCE_QUOTA_H 30 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/gethostname.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2017 gRPC authors. 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 | 19 | #ifndef GRPC_CORE_LIB_IOMGR_GETHOSTNAME_H 20 | #define GRPC_CORE_LIB_IOMGR_GETHOSTNAME_H 21 | 22 | // Returns the hostname of the local machine. 23 | // Caller takes ownership of result. 24 | char* grpc_gethostname(); 25 | 26 | #endif /* GRPC_CORE_LIB_IOMGR_GETHOSTNAME_H */ 27 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2016, Google Inc. 2 | * 3 | * Permission to use, copy, modify, and/or distribute this software for any 4 | * purpose with or without fee is hereby granted, provided that the above 5 | * copyright notice and this permission notice appear in all copies. 6 | * 7 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 10 | * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 12 | * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 13 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ 14 | 15 | /* This header is provided in order to make compiling against code that expects 16 | OpenSSL easier. */ 17 | 18 | #include "asn1.h" 19 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/include/openssl/opensslv.h: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2014, Google Inc. 2 | * 3 | * Permission to use, copy, modify, and/or distribute this software for any 4 | * purpose with or without fee is hereby granted, provided that the above 5 | * copyright notice and this permission notice appear in all copies. 6 | * 7 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 10 | * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 12 | * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 13 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ 14 | 15 | /* This header is provided in order to make compiling against code that expects 16 | OpenSSL easier. */ 17 | 18 | #include "crypto.h" 19 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2014, Google Inc. 2 | * 3 | * Permission to use, copy, modify, and/or distribute this software for any 4 | * purpose with or without fee is hereby granted, provided that the above 5 | * copyright notice and this permission notice appear in all copies. 6 | * 7 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 10 | * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 12 | * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 13 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ 14 | 15 | /* This header is provided in order to make compiling against code that expects 16 | OpenSSL easier. */ 17 | 18 | #include "base.h" 19 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseFirestore/FirebaseFirestore-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.12.1 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/server_builder.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2019 gRPC authors. 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 | 19 | #ifndef GRPCPP_SERVER_BUILDER_H 20 | #define GRPCPP_SERVER_BUILDER_H 21 | 22 | #include 23 | 24 | namespace grpc { 25 | 26 | typedef ::grpc_impl::ServerBuilder ServerBuilder; 27 | 28 | } // namespace grpc 29 | 30 | #endif // GRPCPP_SERVER_BUILDER_H 31 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/src/core/lib/iomgr/pollset_set_windows.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2015 gRPC authors. 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 | 19 | #ifndef GRPC_CORE_LIB_IOMGR_POLLSET_SET_WINDOWS_H 20 | #define GRPC_CORE_LIB_IOMGR_POLLSET_SET_WINDOWS_H 21 | 22 | #include 23 | 24 | #include "src/core/lib/iomgr/pollset_set.h" 25 | 26 | #endif /* GRPC_CORE_LIB_IOMGR_POLLSET_SET_WINDOWS_H */ 27 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/src/core/lib/iomgr/pollset_set_custom.h.grpc_back: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2018 gRPC authors. 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 | 19 | #ifndef GRPC_CORE_LIB_IOMGR_POLLSET_SET_CUSTOM_H 20 | #define GRPC_CORE_LIB_IOMGR_POLLSET_SET_CUSTOM_H 21 | 22 | #include 23 | 24 | void grpc_custom_pollset_set_init(); 25 | 26 | #endif /* GRPC_CORE_LIB_IOMGR_POLLSET_SET_CUSTOM_H */ 27 | --------------------------------------------------------------------------------