├── Pods ├── Headers │ ├── Private │ │ └── Firebase │ │ │ └── Firebase.h │ └── Public │ │ └── Firebase │ │ └── Firebase.h ├── Firebase │ └── CoreOnly │ │ └── Sources │ │ └── module.modulemap ├── Target Support Files │ ├── abseil │ │ ├── abseil.modulemap │ │ ├── abseil-dummy.m │ │ ├── abseil-prefix.pch │ │ ├── abseil.debug.xcconfig │ │ ├── abseil.release.xcconfig │ │ └── abseil-Info.plist │ ├── Tabman │ │ ├── Tabman.modulemap │ │ ├── Tabman-dummy.m │ │ ├── Tabman-prefix.pch │ │ ├── Tabman-umbrella.h │ │ ├── Tabman.debug.xcconfig │ │ ├── Tabman.release.xcconfig │ │ └── Tabman-Info.plist │ ├── nanopb │ │ ├── nanopb.modulemap │ │ ├── nanopb-dummy.m │ │ ├── nanopb-prefix.pch │ │ ├── nanopb-umbrella.h │ │ ├── nanopb.debug.xcconfig │ │ ├── nanopb.release.xcconfig │ │ └── nanopb-Info.plist │ ├── Pageboy │ │ ├── Pageboy.modulemap │ │ ├── Pageboy-dummy.m │ │ ├── Pageboy-prefix.pch │ │ ├── Pageboy-umbrella.h │ │ ├── Pageboy.debug.xcconfig │ │ ├── Pageboy.release.xcconfig │ │ └── Pageboy-Info.plist │ ├── SnapKit │ │ ├── SnapKit.modulemap │ │ ├── SnapKit-dummy.m │ │ ├── SnapKit-prefix.pch │ │ ├── SnapKit-umbrella.h │ │ ├── SnapKit.debug.xcconfig │ │ ├── SnapKit.release.xcconfig │ │ └── SnapKit-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 │ ├── FirebaseAuth │ │ ├── FirebaseAuth.modulemap │ │ ├── FirebaseAuth-dummy.m │ │ └── FirebaseAuth-Info.plist │ ├── FirebaseCore │ │ ├── FirebaseCore.modulemap │ │ ├── FirebaseCore-dummy.m │ │ ├── FirebaseCore-umbrella.h │ │ └── FirebaseCore-Info.plist │ ├── MarqueeLabel │ │ ├── MarqueeLabel.modulemap │ │ ├── MarqueeLabel-dummy.m │ │ ├── MarqueeLabel-prefix.pch │ │ ├── MarqueeLabel-umbrella.h │ │ ├── MarqueeLabel.debug.xcconfig │ │ ├── MarqueeLabel.release.xcconfig │ │ └── MarqueeLabel-Info.plist │ ├── Pods-Writing │ │ ├── Pods-Writing.modulemap │ │ ├── Pods-Writing-dummy.m │ │ ├── Pods-Writing-umbrella.h │ │ └── Pods-Writing-Info.plist │ ├── SwiftOverlays │ │ ├── SwiftOverlays.modulemap │ │ ├── SwiftOverlays-dummy.m │ │ ├── SwiftOverlays-prefix.pch │ │ ├── SwiftOverlays-umbrella.h │ │ ├── SwiftOverlays.debug.xcconfig │ │ ├── SwiftOverlays.release.xcconfig │ │ └── SwiftOverlays-Info.plist │ ├── leveldb-library │ │ ├── leveldb-library.modulemap │ │ ├── leveldb-library-dummy.m │ │ ├── leveldb-library-prefix.pch │ │ ├── leveldb-library-umbrella.h │ │ └── leveldb-library-Info.plist │ ├── GoogleUtilities │ │ ├── GoogleUtilities.modulemap │ │ ├── GoogleUtilities-dummy.m │ │ ├── GoogleUtilities.debug.xcconfig │ │ ├── GoogleUtilities-Info.plist │ │ └── GoogleUtilities.release.xcconfig │ ├── BoringSSL-GRPC │ │ ├── BoringSSL-GRPC-dummy.m │ │ ├── BoringSSL-GRPC.modulemap │ │ ├── BoringSSL-GRPC.debug.xcconfig │ │ ├── BoringSSL-GRPC.release.xcconfig │ │ └── BoringSSL-GRPC-Info.plist │ ├── TextFieldEffects │ │ ├── TextFieldEffects.modulemap │ │ ├── TextFieldEffects-dummy.m │ │ ├── TextFieldEffects-prefix.pch │ │ ├── TextFieldEffects-umbrella.h │ │ ├── TextFieldEffects.debug.xcconfig │ │ └── TextFieldEffects.release.xcconfig │ ├── FirebaseFirestore │ │ ├── FirebaseFirestore.modulemap │ │ └── FirebaseFirestore-dummy.m │ ├── GTMSessionFetcher │ │ ├── GTMSessionFetcher.modulemap │ │ ├── GTMSessionFetcher-dummy.m │ │ ├── GTMSessionFetcher-prefix.pch │ │ ├── GTMSessionFetcher-umbrella.h │ │ ├── GTMSessionFetcher.debug.xcconfig │ │ └── GTMSessionFetcher.release.xcconfig │ ├── MKRingProgressView │ │ ├── MKRingProgressView.modulemap │ │ ├── MKRingProgressView-dummy.m │ │ ├── MKRingProgressView-prefix.pch │ │ ├── MKRingProgressView-umbrella.h │ │ ├── MKRingProgressView.debug.xcconfig │ │ └── MKRingProgressView.release.xcconfig │ ├── GoogleDataTransport │ │ ├── GoogleDataTransport.modulemap │ │ ├── GoogleDataTransport-dummy.m │ │ └── GoogleDataTransport-umbrella.h │ ├── FirebaseCoreDiagnostics │ │ ├── FirebaseCoreDiagnostics.modulemap │ │ ├── FirebaseCoreDiagnostics-dummy.m │ │ └── FirebaseCoreDiagnostics-umbrella.h │ ├── IQKeyboardManagerSwift │ │ ├── IQKeyboardManagerSwift.modulemap │ │ ├── IQKeyboardManagerSwift-dummy.m │ │ ├── IQKeyboardManagerSwift-prefix.pch │ │ ├── IQKeyboardManagerSwift-umbrella.h │ │ ├── IQKeyboardManagerSwift.debug.xcconfig │ │ └── IQKeyboardManagerSwift.release.xcconfig │ └── NotificationBannerSwift │ │ ├── NotificationBannerSwift.modulemap │ │ ├── NotificationBannerSwift-dummy.m │ │ ├── NotificationBannerSwift-prefix.pch │ │ ├── NotificationBannerSwift-umbrella.h │ │ ├── NotificationBannerSwift.debug.xcconfig │ │ └── NotificationBannerSwift.release.xcconfig ├── BoringSSL-GRPC │ └── src │ │ ├── include │ │ └── openssl │ │ │ ├── BoringSSL.modulemap │ │ │ ├── is_boringssl.h │ │ │ ├── dtls1.h │ │ │ ├── is_boringssl.h.back │ │ │ ├── dtls1.h.back │ │ │ ├── is_boringssl.h.grpc_back │ │ │ ├── safestack.h │ │ │ ├── dtls1.h.grpc_back │ │ │ ├── safestack.h.back │ │ │ ├── safestack.h.grpc_back │ │ │ └── srtp.h │ │ ├── ssl │ │ └── test │ │ │ └── runner │ │ │ └── curve25519 │ │ │ ├── const_amd64.h │ │ │ └── const_amd64.h.grpc_back │ │ └── crypto │ │ ├── x509 │ │ ├── charmap.h │ │ └── charmap.h.grpc_back │ │ └── rsa_extra │ │ ├── rsa_print.c │ │ └── rsa_print.c.grpc_back ├── leveldb-library │ ├── util │ │ ├── filter_policy.cc │ │ ├── options.cc │ │ ├── hash.h │ │ └── env_windows_test_helper.h │ ├── port │ │ └── port.h │ └── db │ │ └── db_iter.h ├── Tabman │ └── Sources │ │ └── Tabman │ │ ├── Bar │ │ ├── Extensions │ │ │ ├── UIView+DefaultTintColor.swift │ │ │ └── CGRect+Interpolation.swift │ │ ├── Utility │ │ │ ├── WeakContainer.swift │ │ │ └── BarMath.swift │ │ ├── BarButton │ │ │ └── TMBarButtonController.swift │ │ ├── BarItem │ │ │ └── UIKit+TMBarItemable.swift │ │ ├── BarLayout │ │ │ └── TMBarLayoutInsetGuides.swift │ │ ├── TMAnimation.swift │ │ ├── BarView │ │ │ └── TMBarViewFocusProvider.swift │ │ ├── TMTransition.swift │ │ └── BarIndicator │ │ │ └── TMBarIndicatorLayoutHandler.swift │ │ ├── AutoInsetter │ │ ├── InsetStore │ │ │ └── InsetStore.swift │ │ ├── AutoInsetSpec.swift │ │ └── InsetCalculator │ │ │ └── InsetCalculations.swift │ │ ├── Tabman.h │ │ └── Extensions │ │ ├── PageboyViewController+RelativeCurrentPosition.swift │ │ └── PageboyNavigationDirection+Tabman.swift ├── Pageboy │ └── Sources │ │ └── Pageboy │ │ ├── Utilities │ │ ├── Extensions │ │ │ ├── DispatchQueue+main.swift │ │ │ ├── UIPageViewController+ScrollView.swift │ │ │ ├── UIScrollView+Interaction.swift │ │ │ ├── UIView+Animation.swift │ │ │ ├── UIApplication+SafeShared.swift │ │ │ └── UIView+Localization.swift │ │ └── WeakContainer.swift │ │ ├── AutoScrolling │ │ └── PageboyViewController+AutoScrolling.swift │ │ └── Pageboy.h ├── gRPC-C++ │ ├── third_party │ │ └── upb │ │ │ └── upb │ │ │ ├── encode.h │ │ │ ├── decode.h │ │ │ └── port_undef.inc │ ├── 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 │ └── 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 │ │ ├── sync_stream_impl.h │ │ ├── async_stream_impl.h │ │ ├── message_allocator.h │ │ ├── client_interceptor.h │ │ ├── server_interceptor.h │ │ ├── proto_buffer_reader.h │ │ ├── proto_buffer_writer.h │ │ ├── slice.h │ │ ├── client_callback_impl.h │ │ ├── server_callback_impl.h │ │ └── async_unary_call_impl.h │ │ ├── server_context.h │ │ ├── completion_queue.h │ │ ├── alarm.h │ │ ├── completion_queue_impl.h │ │ ├── security │ │ └── auth_context.h │ │ ├── server.h │ │ └── generic │ │ └── async_generic_service.h ├── gRPC-Core │ ├── third_party │ │ └── upb │ │ │ └── upb │ │ │ ├── encode.h │ │ │ ├── decode.h │ │ │ ├── port_undef.inc │ │ │ └── port.c │ ├── src │ │ └── core │ │ │ ├── ext │ │ │ └── upb-generated │ │ │ │ └── envoy │ │ │ │ └── type │ │ │ │ └── http.upb.c │ │ │ └── lib │ │ │ ├── surface │ │ │ └── api_trace.cc │ │ │ └── iomgr │ │ │ ├── iomgr_posix.h │ │ │ └── pollset_set_custom.h │ └── include │ │ └── grpc │ │ ├── fork.h │ │ ├── status.h │ │ ├── support │ │ ├── atm.h │ │ ├── log.h │ │ ├── port_platform.h │ │ ├── sync_posix.h │ │ ├── atm_windows.h │ │ ├── sync_abseil.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 ├── FirebaseAuth │ └── FirebaseAuth │ │ ├── README.md │ │ └── Sources │ │ └── MultiFactor │ │ └── FIRMultiFactorConstants.m ├── abseil │ └── absl │ │ ├── time │ │ └── internal │ │ │ └── get_current_time_posix.inc │ │ └── strings │ │ └── internal │ │ └── str_format │ │ └── float_conversion.h ├── FirebaseFirestore │ └── Firestore │ │ ├── core │ │ └── src │ │ │ └── remote │ │ │ └── grpc_root_certificates_generated.h │ │ └── Source │ │ └── API │ │ └── FIRFirestoreVersion.h ├── PromisesObjC │ └── Sources │ │ └── FBLPromises │ │ └── FBLPromiseError.m ├── FirebaseCore │ └── FirebaseCore │ │ └── Sources │ │ └── Public │ │ └── FirebaseCore │ │ ├── FirebaseCore.h │ │ └── FIRVersion.h ├── FirebaseCoreDiagnostics │ └── Firebase │ │ └── CoreDiagnostics │ │ └── FIRCDLibrary │ │ └── Public │ │ └── FIRCoreDiagnostics.h ├── GoogleUtilities │ └── GoogleUtilities │ │ └── Network │ │ └── GULNetworkInternal.h └── nanopb │ └── LICENSE.txt ├── Writing ├── Cafe24Oneprettynight.ttf ├── Assets.xcassets │ ├── Contents.json │ ├── AppIcon.appiconset │ │ ├── 20.png │ │ ├── 29.png │ │ ├── 40.png │ │ ├── 50.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── 100.png │ │ ├── 1024.png │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 167.png │ │ └── 180.png │ ├── more-50.imageset │ │ ├── more-50.png │ │ └── Contents.json │ ├── more-76.imageset │ │ ├── more-76.png │ │ └── Contents.json │ ├── appstore.imageset │ │ ├── appstore.png │ │ └── Contents.json │ ├── playstore.imageset │ │ ├── playstore.png │ │ └── Contents.json │ ├── more-options.imageset │ │ ├── more-options.png │ │ └── Contents.json │ ├── 2.imageset │ │ ├── 스크린샷 2021-08-14 오후 1.58.40.png │ │ └── Contents.json │ ├── 3.imageset │ │ ├── 스크린샷 2021-08-16 오후 10.05.46.png │ │ └── Contents.json │ ├── Cafe24Oneprettynight.dataset │ │ ├── Cafe24Oneprettynight.ttf │ │ └── Contents.json │ ├── 1.imageset │ │ ├── 238890327_1192440274588493_3644259120267919739_n.jpg │ │ └── Contents.json │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── more.imageset │ │ └── Contents.json │ └── Image.imageset │ │ └── Contents.json ├── Models │ ├── TimeWriting.swift │ ├── PhotoWriting.swift │ └── Writing.swift └── Controllers │ ├── ViewController.swift │ └── CustomTableViewCells │ ├── SearchCollectionViewCell.swift │ └── ChallengeTableViewCell.swift ├── Writing.xcodeproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Writing.xcworkspace ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── contents.xcworkspacedata └── 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 | } -------------------------------------------------------------------------------- /Writing/Cafe24Oneprettynight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Cafe24Oneprettynight.ttf -------------------------------------------------------------------------------- /Writing/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/more-50.imageset/more-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/more-50.imageset/more-50.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/more-76.imageset/more-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/more-76.imageset/more-76.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/appstore.imageset/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/appstore.imageset/appstore.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/playstore.imageset/playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/playstore.imageset/playstore.png -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Tabman/Tabman.modulemap: -------------------------------------------------------------------------------- 1 | framework module Tabman { 2 | umbrella header "Tabman-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Writing/Assets.xcassets/more-options.imageset/more-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/more-options.imageset/more-options.png -------------------------------------------------------------------------------- /Pods/Target Support Files/Pageboy/Pageboy.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pageboy { 2 | umbrella header "Pageboy-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit.modulemap: -------------------------------------------------------------------------------- 1 | framework module SnapKit { 2 | umbrella header "SnapKit-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Tabman/Tabman-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Tabman : NSObject 3 | @end 4 | @implementation PodsDummy_Tabman 5 | @end 6 | -------------------------------------------------------------------------------- /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/Pageboy/Pageboy-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pageboy : NSObject 3 | @end 4 | @implementation PodsDummy_Pageboy 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SnapKit : NSObject 3 | @end 4 | @implementation PodsDummy_SnapKit 5 | @end 6 | -------------------------------------------------------------------------------- /Writing/Assets.xcassets/2.imageset/스크린샷 2021-08-14 오후 1.58.40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/2.imageset/스크린샷 2021-08-14 오후 1.58.40.png -------------------------------------------------------------------------------- /Writing/Assets.xcassets/3.imageset/스크린샷 2021-08-16 오후 10.05.46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/3.imageset/스크린샷 2021-08-16 오후 10.05.46.png -------------------------------------------------------------------------------- /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/FirebaseAuth/FirebaseAuth.modulemap: -------------------------------------------------------------------------------- 1 | framework module FirebaseAuth { 2 | umbrella header "FirebaseAuth-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /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/MarqueeLabel/MarqueeLabel.modulemap: -------------------------------------------------------------------------------- 1 | framework module MarqueeLabel { 2 | umbrella header "MarqueeLabel-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Writing/Pods-Writing.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_Writing { 2 | umbrella header "Pods-Writing-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftOverlays/SwiftOverlays.modulemap: -------------------------------------------------------------------------------- 1 | framework module SwiftOverlays { 2 | umbrella header "SwiftOverlays-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/FirebaseAuth/FirebaseAuth-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FirebaseAuth : NSObject 3 | @end 4 | @implementation PodsDummy_FirebaseAuth 5 | @end 6 | -------------------------------------------------------------------------------- /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/MarqueeLabel/MarqueeLabel-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_MarqueeLabel : NSObject 3 | @end 4 | @implementation PodsDummy_MarqueeLabel 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Writing/Pods-Writing-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Writing : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Writing 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 | -------------------------------------------------------------------------------- /Writing/Assets.xcassets/Cafe24Oneprettynight.dataset/Cafe24Oneprettynight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/Cafe24Oneprettynight.dataset/Cafe24Oneprettynight.ttf -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftOverlays/SwiftOverlays-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SwiftOverlays : NSObject 3 | @end 4 | @implementation PodsDummy_SwiftOverlays 5 | @end 6 | -------------------------------------------------------------------------------- /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/TextFieldEffects/TextFieldEffects.modulemap: -------------------------------------------------------------------------------- 1 | framework module TextFieldEffects { 2 | umbrella header "TextFieldEffects-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/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/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/GTMSessionFetcher/GTMSessionFetcher.modulemap: -------------------------------------------------------------------------------- 1 | framework module GTMSessionFetcher { 2 | umbrella header "GTMSessionFetcher-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/MKRingProgressView/MKRingProgressView.modulemap: -------------------------------------------------------------------------------- 1 | framework module MKRingProgressView { 2 | umbrella header "MKRingProgressView-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/TextFieldEffects/TextFieldEffects-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_TextFieldEffects : NSObject 3 | @end 4 | @implementation PodsDummy_TextFieldEffects 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 | -------------------------------------------------------------------------------- /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/GTMSessionFetcher/GTMSessionFetcher-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_GTMSessionFetcher : NSObject 3 | @end 4 | @implementation PodsDummy_GTMSessionFetcher 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 | -------------------------------------------------------------------------------- /Writing.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Writing/Assets.xcassets/1.imageset/238890327_1192440274588493_3644259120267919739_n.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ITlearning/Writing/HEAD/Writing/Assets.xcassets/1.imageset/238890327_1192440274588493_3644259120267919739_n.jpg -------------------------------------------------------------------------------- /Pods/Target Support Files/MKRingProgressView/MKRingProgressView-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_MKRingProgressView : NSObject 3 | @end 4 | @implementation PodsDummy_MKRingProgressView 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleDataTransport/GoogleDataTransport-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_GoogleDataTransport : NSObject 3 | @end 4 | @implementation PodsDummy_GoogleDataTransport 5 | @end 6 | -------------------------------------------------------------------------------- /Writing/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /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/IQKeyboardManagerSwift/IQKeyboardManagerSwift.modulemap: -------------------------------------------------------------------------------- 1 | framework module IQKeyboardManagerSwift { 2 | umbrella header "IQKeyboardManagerSwift-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/NotificationBannerSwift/NotificationBannerSwift.modulemap: -------------------------------------------------------------------------------- 1 | framework module NotificationBannerSwift { 2 | umbrella header "NotificationBannerSwift-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_IQKeyboardManagerSwift : NSObject 3 | @end 4 | @implementation PodsDummy_IQKeyboardManagerSwift 5 | @end 6 | -------------------------------------------------------------------------------- /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/NotificationBannerSwift/NotificationBannerSwift-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_NotificationBannerSwift : NSObject 3 | @end 4 | @implementation PodsDummy_NotificationBannerSwift 5 | @end 6 | -------------------------------------------------------------------------------- /Writing/Models/TimeWriting.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TimeWriting.swift 3 | // Writing 4 | // 일기 시간 모델 5 | // Created by IT learning on 2021/08/13. 6 | // 7 | 8 | import Foundation 9 | 10 | struct TimeWriting { 11 | let time: [Int: Int] 12 | } 13 | -------------------------------------------------------------------------------- /Writing/Assets.xcassets/more-50.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "more-50.png", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Writing/Assets.xcassets/more-76.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "more-76.png", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Writing/Assets.xcassets/Cafe24Oneprettynight.dataset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "data" : [ 3 | { 4 | "filename" : "Cafe24Oneprettynight.ttf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pageboy/Pageboy-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/SnapKit/SnapKit-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/Tabman/Tabman-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/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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Writing/Models/PhotoWriting.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PhotoWriting.swift 3 | // Writing 4 | // 일기 사진 모델 5 | // Created by IT learning on 2021/08/21. 6 | // 7 | 8 | import Foundation 9 | 10 | struct PhotoWriting { 11 | let time: Double 12 | let writing: String 13 | let data: String 14 | } 15 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MarqueeLabel/MarqueeLabel-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/SwiftOverlays/SwiftOverlays-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/GTMSessionFetcher/GTMSessionFetcher-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/TextFieldEffects/TextFieldEffects-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 | -------------------------------------------------------------------------------- /Writing.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MKRingProgressView/MKRingProgressView-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/IQKeyboardManagerSwift/IQKeyboardManagerSwift-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/NotificationBannerSwift/NotificationBannerSwift-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 | -------------------------------------------------------------------------------- /Writing.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Writing/Assets.xcassets/more.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "more-options.svg", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Writing/Controllers/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // Writing 4 | // 5 | // Created by IT learning on 2021/08/08. 6 | // 7 | 8 | import UIKit 9 | import Firebase 10 | class ViewController: UIViewController { 11 | 12 | override func viewDidLoad() { 13 | super.viewDidLoad() 14 | 15 | } 16 | 17 | } 18 | 19 | -------------------------------------------------------------------------------- /Writing.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Writing/Assets.xcassets/Image.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "scale" : "3x" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Writing/Controllers/CustomTableViewCells/SearchCollectionViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SearchCollectionViewCell.swift 3 | // Writing 4 | // 사진 뷰 커스텀 셀 5 | // Created by IT learning on 2021/08/20. 6 | // 7 | 8 | import UIKit 9 | 10 | class SearchCollectionViewCell: UICollectionViewCell { 11 | 12 | @IBOutlet weak var lbl: UIView! 13 | @IBOutlet weak var imageView: UIImageView! 14 | 15 | 16 | } 17 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/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/Target Support Files/SnapKit/SnapKit-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 SnapKitVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char SnapKitVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Writing/Models/Writing.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Writing.swift 3 | // Writing 4 | // 일기 서버 파싱 모델 5 | // Created by IT learning on 2021/08/11. 6 | // 7 | 8 | import UIKit 9 | import FirebaseStorage 10 | struct Writing { 11 | let emtion : String 12 | let time: Double 13 | let writing: String 14 | let documentID: String 15 | let data: String 16 | let deleteID: StorageReference 17 | let switchID: String 18 | } 19 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/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 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MarqueeLabel/MarqueeLabel-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 MarqueeLabelVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char MarqueeLabelVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Writing/Pods-Writing-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_WritingVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_WritingVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftOverlays/SwiftOverlays-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 SwiftOverlaysVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char SwiftOverlaysVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Tabman/Tabman-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 "Tabman.h" 14 | 15 | FOUNDATION_EXPORT double TabmanVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char TabmanVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pageboy/Pageboy-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 "Pageboy.h" 14 | 15 | FOUNDATION_EXPORT double PageboyVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char PageboyVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /Writing/Assets.xcassets/appstore.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "appstore.png", 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 | -------------------------------------------------------------------------------- /Writing/Assets.xcassets/playstore.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "playstore.png", 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/TextFieldEffects/TextFieldEffects-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 TextFieldEffectsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char TextFieldEffectsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MKRingProgressView/MKRingProgressView-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 MKRingProgressViewVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char MKRingProgressViewVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Writing/Assets.xcassets/2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "스크린샷 2021-08-14 오후 1.58.40.png", 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 | -------------------------------------------------------------------------------- /Writing/Assets.xcassets/3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "스크린샷 2021-08-16 오후 10.05.46.png", 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/IQKeyboardManagerSwift/IQKeyboardManagerSwift-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 IQKeyboardManagerSwiftVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char IQKeyboardManagerSwiftVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Pods/Target Support Files/NotificationBannerSwift/NotificationBannerSwift-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 NotificationBannerSwiftVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char NotificationBannerSwiftVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Writing/Assets.xcassets/1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "238890327_1192440274588493_3644259120267919739_n.jpg", 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/Tabman/Sources/Tabman/Bar/Extensions/UIView+DefaultTintColor.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIView+DefaultTintColor.swift 3 | // Tabman 4 | // 5 | // Created by Merrick Sapsford on 05/12/2017. 6 | // Copyright © 2017 UI At Six. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | internal extension UIView { 12 | 13 | /// The default tintColor of UIView 14 | class var defaultTintColor: UIColor { 15 | let view = UIView() 16 | return view.tintColor 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /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/Tabman/Sources/Tabman/Bar/Utility/WeakContainer.swift: -------------------------------------------------------------------------------- 1 | // 2 | // WeakContainer.swift 3 | // Tabman 4 | // 5 | // Created by Merrick Sapsford on 03/07/2018. 6 | // Copyright © 2019 UI At Six. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | internal class WeakContainer { 12 | 13 | // MARK: Properties 14 | 15 | private(set) weak var object: T? 16 | 17 | // MARK: Init 18 | 19 | init(for object: T) { 20 | self.object = object 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /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 "FIRCoreDiagnostics.h" 14 | 15 | FOUNDATION_EXPORT double FirebaseCoreDiagnosticsVersionNumber; 16 | FOUNDATION_EXPORT const unsigned char FirebaseCoreDiagnosticsVersionString[]; 17 | 18 | -------------------------------------------------------------------------------- /Writing/Assets.xcassets/more-options.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "more-options.png", 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 | "properties" : { 22 | "auto-scaling" : "auto" 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Pods/Pageboy/Sources/Pageboy/Utilities/Extensions/DispatchQueue+main.swift: -------------------------------------------------------------------------------- 1 | // 2 | // DispatchQueue+main.swift 3 | // Pageboy 4 | // 5 | // Created by Remi Robert on 2019/02/11. 6 | // Copyright © 2019 UI At Six. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension DispatchQueue { 12 | 13 | static func executeInMainThread(callback: @escaping () -> Void) { 14 | if Thread.isMainThread { 15 | callback() 16 | } else { 17 | DispatchQueue.main.sync(execute: callback) 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/third_party/upb/upb/encode.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** upb_encode: parsing into a upb_msg using a upb_msglayout. 3 | */ 4 | 5 | #ifndef UPB_ENCODE_H_ 6 | #define UPB_ENCODE_H_ 7 | 8 | #if COCOAPODS==1 9 | #include "third_party/upb/upb/msg.h" 10 | #else 11 | #include "upb/msg.h" 12 | #endif 13 | 14 | #ifdef __cplusplus 15 | extern "C" { 16 | #endif 17 | 18 | char *upb_encode(const void *msg, const upb_msglayout *l, upb_arena *arena, 19 | size_t *size); 20 | 21 | #ifdef __cplusplus 22 | } /* extern "C" */ 23 | #endif 24 | 25 | #endif /* UPB_ENCODE_H_ */ 26 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/third_party/upb/upb/encode.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** upb_encode: parsing into a upb_msg using a upb_msglayout. 3 | */ 4 | 5 | #ifndef UPB_ENCODE_H_ 6 | #define UPB_ENCODE_H_ 7 | 8 | #if COCOAPODS==1 9 | #include "third_party/upb/upb/msg.h" 10 | #else 11 | #include "upb/msg.h" 12 | #endif 13 | 14 | #ifdef __cplusplus 15 | extern "C" { 16 | #endif 17 | 18 | char *upb_encode(const void *msg, const upb_msglayout *l, upb_arena *arena, 19 | size_t *size); 20 | 21 | #ifdef __cplusplus 22 | } /* extern "C" */ 23 | #endif 24 | 25 | #endif /* UPB_ENCODE_H_ */ 26 | -------------------------------------------------------------------------------- /Pods/Pageboy/Sources/Pageboy/AutoScrolling/PageboyViewController+AutoScrolling.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PageboyViewController+AutoScrolling.swift 3 | // Pageboy 4 | // 5 | // Created by Merrick Sapsford on 17/05/2017. 6 | // Copyright © 2018 UI At Six. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | // MARK: - PageboyAutoScrollerHandler 12 | extension PageboyViewController: PageboyAutoScrollerHandler { 13 | 14 | func autoScroller(didRequestAutoScroll autoScroller: PageboyAutoScroller, animated: Bool) { 15 | scrollToPage(.next, animated: animated) 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Pods/Tabman/Sources/Tabman/AutoInsetter/InsetStore/InsetStore.swift: -------------------------------------------------------------------------------- 1 | // 2 | // InsetStore.swift 3 | // AutoInsetter 4 | // 5 | // Created by Merrick Sapsford on 19/03/2019. 6 | // Copyright © 2019 UI At Six. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | protocol InsetStore: class { 12 | 13 | func store(contentInset: UIEdgeInsets, for view: UIScrollView) 14 | func store(contentOffset: CGPoint, for view: UIScrollView) 15 | 16 | func contentInset(for view: UIScrollView) -> UIEdgeInsets? 17 | func contentOffset(for view: UIScrollView) -> CGPoint? 18 | } 19 | -------------------------------------------------------------------------------- /Pods/Tabman/Sources/Tabman/Tabman.h: -------------------------------------------------------------------------------- 1 | // 2 | // Tabman.h 3 | // Tabman 4 | // 5 | // Created by Merrick Sapsford on 17/02/2017. 6 | // Copyright © 2019 UI At Six. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for Tabman. 12 | FOUNDATION_EXPORT double TabmanVersionNumber; 13 | 14 | //! Project version string for Tabman. 15 | FOUNDATION_EXPORT const unsigned char TabmanVersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | 19 | 20 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/third_party/upb/upb/decode.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** upb_decode: parsing into a upb_msg using a upb_msglayout. 3 | */ 4 | 5 | #ifndef UPB_DECODE_H_ 6 | #define UPB_DECODE_H_ 7 | 8 | #if COCOAPODS==1 9 | #include "third_party/upb/upb/msg.h" 10 | #else 11 | #include "upb/msg.h" 12 | #endif 13 | 14 | #ifdef __cplusplus 15 | extern "C" { 16 | #endif 17 | 18 | bool upb_decode(const char *buf, size_t size, upb_msg *msg, 19 | const upb_msglayout *l, upb_arena *arena); 20 | 21 | #ifdef __cplusplus 22 | } /* extern "C" */ 23 | #endif 24 | 25 | #endif /* UPB_DECODE_H_ */ 26 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/third_party/upb/upb/port_undef.inc: -------------------------------------------------------------------------------- 1 | /* See port_def.inc. This should #undef all macros #defined there. */ 2 | 3 | #undef UPB_SIZE 4 | #undef UPB_FIELD_AT 5 | #undef UPB_READ_ONEOF 6 | #undef UPB_WRITE_ONEOF 7 | #undef UPB_INLINE 8 | #undef UPB_FORCEINLINE 9 | #undef UPB_NOINLINE 10 | #undef UPB_NORETURN 11 | #undef UPB_MAX 12 | #undef UPB_MIN 13 | #undef UPB_UNUSED 14 | #undef UPB_ASSERT 15 | #undef UPB_ASSERT_DEBUGVAR 16 | #undef UPB_UNREACHABLE 17 | #undef UPB_INFINITY 18 | #undef UPB_MSVC_VSNPRINTF 19 | #undef _upb_snprintf 20 | #undef _upb_vsnprintf 21 | #undef _upb_va_copy 22 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/third_party/upb/upb/decode.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** upb_decode: parsing into a upb_msg using a upb_msglayout. 3 | */ 4 | 5 | #ifndef UPB_DECODE_H_ 6 | #define UPB_DECODE_H_ 7 | 8 | #if COCOAPODS==1 9 | #include "third_party/upb/upb/msg.h" 10 | #else 11 | #include "upb/msg.h" 12 | #endif 13 | 14 | #ifdef __cplusplus 15 | extern "C" { 16 | #endif 17 | 18 | bool upb_decode(const char *buf, size_t size, upb_msg *msg, 19 | const upb_msglayout *l, upb_arena *arena); 20 | 21 | #ifdef __cplusplus 22 | } /* extern "C" */ 23 | #endif 24 | 25 | #endif /* UPB_DECODE_H_ */ 26 | -------------------------------------------------------------------------------- /Pods/gRPC-Core/third_party/upb/upb/port_undef.inc: -------------------------------------------------------------------------------- 1 | /* See port_def.inc. This should #undef all macros #defined there. */ 2 | 3 | #undef UPB_SIZE 4 | #undef UPB_FIELD_AT 5 | #undef UPB_READ_ONEOF 6 | #undef UPB_WRITE_ONEOF 7 | #undef UPB_INLINE 8 | #undef UPB_FORCEINLINE 9 | #undef UPB_NOINLINE 10 | #undef UPB_NORETURN 11 | #undef UPB_MAX 12 | #undef UPB_MIN 13 | #undef UPB_UNUSED 14 | #undef UPB_ASSERT 15 | #undef UPB_ASSERT_DEBUGVAR 16 | #undef UPB_UNREACHABLE 17 | #undef UPB_INFINITY 18 | #undef UPB_MSVC_VSNPRINTF 19 | #undef _upb_snprintf 20 | #undef _upb_vsnprintf 21 | #undef _upb_va_copy 22 | -------------------------------------------------------------------------------- /Pods/Pageboy/Sources/Pageboy/Pageboy.h: -------------------------------------------------------------------------------- 1 | // 2 | // Pageboy.h 3 | // Pageboy 4 | // 5 | // Created by Merrick Sapsford on 25/07/2017. 6 | // Copyright © 2018 UI At Six. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for Pageboy. 12 | FOUNDATION_EXPORT double PageboyVersionNumber; 13 | 14 | //! Project version string for Pageboy. 15 | FOUNDATION_EXPORT const unsigned char PageboyVersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | 19 | 20 | -------------------------------------------------------------------------------- /Pods/Pageboy/Sources/Pageboy/Utilities/Extensions/UIPageViewController+ScrollView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIPageViewController+ScrollView.swift 3 | // Pageboy 4 | // 5 | // Created by Merrick Sapsford on 13/02/2017. 6 | // Copyright © 2018 UI At Six. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | internal extension UIPageViewController { 12 | 13 | var scrollView: UIScrollView? { 14 | for subview in view.subviews { 15 | if let scrollView = subview as? UIScrollView { 16 | return scrollView 17 | } 18 | } 19 | return nil 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /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 | #import "FIRVersion.h" 19 | 20 | FOUNDATION_EXPORT double FirebaseCoreVersionNumber; 21 | FOUNDATION_EXPORT const unsigned char FirebaseCoreVersionString[]; 22 | 23 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher-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 "GTMSessionFetcher.h" 14 | #import "GTMSessionFetcherLogging.h" 15 | #import "GTMSessionFetcherService.h" 16 | #import "GTMSessionUploadFetcher.h" 17 | 18 | FOUNDATION_EXPORT double GTMSessionFetcherVersionNumber; 19 | FOUNDATION_EXPORT const unsigned char GTMSessionFetcherVersionString[]; 20 | 21 | -------------------------------------------------------------------------------- /Pods/Pageboy/Sources/Pageboy/Utilities/WeakContainer.swift: -------------------------------------------------------------------------------- 1 | // 2 | // WeakContainer.swift 3 | // Pageboy iOS 4 | // 5 | // Created by Merrick Sapsford on 02/03/2019. 6 | // Copyright © 2019 UI At Six. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | internal final class WeakWrapper { 12 | 13 | private(set) weak var object: T? 14 | 15 | init(_ object: T) { 16 | self.object = object 17 | } 18 | } 19 | 20 | extension WeakWrapper: Equatable { 21 | 22 | static func == (lhs: WeakWrapper, rhs: WeakWrapper) -> Bool { 23 | return lhs.object === rhs.object 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /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/Tabman/Sources/Tabman/AutoInsetter/AutoInsetSpec.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AutoInsetSpec.swift 3 | // AutoInset 4 | // 5 | // Created by Merrick Sapsford on 16/01/2018. 6 | // Copyright © 2018 UI At Six. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | /// Specification for Auto Insetting values. 12 | internal protocol AutoInsetSpec { 13 | 14 | /// The insets that are required IN addition to UIKit components / safe area. 15 | var additionalRequiredInsets: UIEdgeInsets { get } 16 | 17 | /// All insets that are required INCLUDING UIKit components / safe area. 18 | var allRequiredInsets: UIEdgeInsets { get } 19 | } 20 | -------------------------------------------------------------------------------- /Pods/Tabman/Sources/Tabman/Extensions/PageboyViewController+RelativeCurrentPosition.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PageboyViewController+RelativeCurrentPosition.swift 3 | // Tabman 4 | // 5 | // Created by Merrick Sapsford on 22/10/2018. 6 | // Copyright © 2019 UI At Six. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import Pageboy 11 | 12 | internal extension PageboyViewController { 13 | 14 | var relativeCurrentPosition: CGFloat? { 15 | guard let position = self.currentPosition else { 16 | return nil 17 | } 18 | return self.navigationOrientation == .horizontal ? position.x : position.y 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Pods/Tabman/Sources/Tabman/Extensions/PageboyNavigationDirection+Tabman.swift: -------------------------------------------------------------------------------- 1 | // 2 | // PageboyNavigationDirection+Tabman.swift 3 | // Tabman 4 | // 5 | // Created by Merrick Sapsford on 02/01/2020. 6 | // Copyright © 2020 UI At Six. All rights reserved. 7 | // 8 | 9 | import Pageboy 10 | 11 | extension PageboyViewController.NavigationDirection { 12 | 13 | var barUpdateDirection: TMBarUpdateDirection { 14 | switch self { 15 | case .forward: 16 | return .forward 17 | case .neutral: 18 | return .none 19 | case .reverse: 20 | return .reverse 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /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/Pageboy/Sources/Pageboy/Utilities/Extensions/UIScrollView+Interaction.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIScrollView+Interaction.swift 3 | // Pageboy 4 | // 5 | // Created by Merrick Sapsford on 23/01/2018. 6 | // Copyright © 2018 UI At Six. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | internal extension UIScrollView { 12 | 13 | /// Whether the scroll view can be assumed to be interactively scrolling 14 | var isProbablyActiveInScroll: Bool { 15 | return isTracking || isDecelerating 16 | } 17 | 18 | func cancelTouches() { 19 | panGestureRecognizer.isEnabled = false 20 | panGestureRecognizer.isEnabled = true 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Pods/Tabman/Sources/Tabman/Bar/BarButton/TMBarButtonController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TMBarButtonController.swift 3 | // Tabman 4 | // 5 | // Created by Merrick Sapsford on 05/07/2018. 6 | // Copyright © 2019 UI At Six. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | /// A controller which is responsible for a collection of bar buttons. 12 | internal class TMBarButtonController { 13 | 14 | // MARK: Properties 15 | 16 | let barButtons: [WeakContainer] 17 | 18 | // MARK: Init 19 | 20 | init(for barButtons: [TMBarButton]) { 21 | self.barButtons = barButtons.map({ WeakContainer(for: $0) }) 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Pods/Tabman/Sources/Tabman/Bar/Extensions/CGRect+Interpolation.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CGRect+Interpolation.swift 3 | // Tabman 4 | // 5 | // Created by Merrick Sapsford on 07/06/2018. 6 | // Copyright © 2019 UI At Six. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension CGRect { 12 | 13 | func interpolate(with other: CGRect, progress: CGFloat) -> CGRect { 14 | return CGRect(x: (other.origin.x - origin.x) * progress, 15 | y: (other.origin.y - origin.y) * progress, 16 | width: (other.size.width - size.width) * progress, 17 | height: (other.size.height - size.height) * progress) 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Pods/FirebaseAuth/FirebaseAuth/README.md: -------------------------------------------------------------------------------- 1 | # Firebase Auth for iOS 2 | 3 | Firebase Auth enables apps to easily support multiple authentication options 4 | for their end users. 5 | 6 | Please visit [our developer site](https://firebase.google.com/docs/auth/) for 7 | integration instructions, documentation, support information, and terms of 8 | service. 9 | 10 | # Firebase Auth Development 11 | 12 | Example/Auth contains a set of samples and tests that integrate with 13 | FirebaseAuth. 14 | 15 | The unit tests run without any additional configuration along with the rest of 16 | Firebase. See [Tests/Sample/README.md](Tests/Sample/README.md) for 17 | information about setting up, running, and testing the samples. 18 | -------------------------------------------------------------------------------- /Pods/Target Support Files/BoringSSL-GRPC/BoringSSL-GRPC.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 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}/BoringSSL-GRPC 8 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/BoringSSL-GRPC/BoringSSL-GRPC.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/BoringSSL-GRPC 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 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}/BoringSSL-GRPC 8 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/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/Target Support Files/Pageboy/Pageboy.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Pageboy 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 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}/Pageboy 9 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 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/SnapKit/SnapKit.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SnapKit 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 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}/SnapKit 9 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/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/Tabman/Sources/Tabman/Bar/BarItem/UIKit+TMBarItemable.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIKit+TMBarItem.swift 3 | // Tabman 4 | // 5 | // Created by Merrick Sapsford on 19/10/2018. 6 | // Copyright © 2019 UI At Six. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | /// :nodoc: 12 | extension UINavigationItem: TMBarItemable { 13 | 14 | // swiftlint:disable unused_setter_value 15 | 16 | public var image: UIImage? { 17 | get { 18 | return nil 19 | } 20 | set {} 21 | } 22 | 23 | public var badgeValue: String? { 24 | get { 25 | return nil 26 | } 27 | set {} 28 | } 29 | } 30 | 31 | /// :nodoc: 32 | extension UITabBarItem: TMBarItemable { 33 | } 34 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pageboy/Pageboy.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Pageboy 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 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}/Pageboy 9 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 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/SnapKit/SnapKit.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SnapKit 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 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}/SnapKit 9 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Pods/Tabman/Sources/Tabman/AutoInsetter/InsetCalculator/InsetCalculations.swift: -------------------------------------------------------------------------------- 1 | // 2 | // InsetCalculations.swift 3 | // AutoInsetter 4 | // 5 | // Created by Merrick Sapsford on 20/03/2019. 6 | // Copyright © 2019 UI At Six. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | internal struct ContentInsetCalculation { 12 | /// The new Content Inset 13 | let new: UIEdgeInsets 14 | /// The previously calculated Content Inset 15 | let previous: UIEdgeInsets? 16 | /// The current actual Content Inset of the view. 17 | let currentActual: UIEdgeInsets 18 | } 19 | 20 | internal struct ContentOffsetCalculation { 21 | let new: CGPoint 22 | let previous: CGPoint? 23 | let currentActual: CGPoint 24 | } 25 | -------------------------------------------------------------------------------- /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 | ABSL_NAMESPACE_BEGIN 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 | ABSL_NAMESPACE_END 24 | } // namespace absl 25 | -------------------------------------------------------------------------------- /Pods/FirebaseFirestore/Firestore/core/src/remote/grpc_root_certificates_generated.h: -------------------------------------------------------------------------------- 1 | // Copyright 2019 Google Inc. All Rights Reserved. 2 | 3 | #ifndef FIRESTORE_CORE_SRC_REMOTE_GRPC_ROOT_CERTIFICATES_GENERATED_H_ 4 | #define FIRESTORE_CORE_SRC_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_REMOTE_GRPC_ROOT_CERTIFICATES_GENERATED_H_ 21 | -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/nanopb 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 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}/nanopb 8 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/nanopb/nanopb.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/nanopb 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 $(inherited) PB_FIELD_32BIT=1 PB_NO_PACKED_STRUCTS=1 PB_ENABLE_MALLOC=1 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}/nanopb 8 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 12 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftOverlays/SwiftOverlays.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SwiftOverlays 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 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}/SwiftOverlays 9 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 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/SwiftOverlays/SwiftOverlays.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SwiftOverlays 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 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}/SwiftOverlays 9 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 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/TextFieldEffects/TextFieldEffects.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/TextFieldEffects 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 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}/TextFieldEffects 9 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 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/GoogleDataTransport/GoogleDataTransport-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 "GDTCORClock.h" 14 | #import "GDTCORConsoleLogger.h" 15 | #import "GDTCOREndpoints.h" 16 | #import "GDTCOREvent.h" 17 | #import "GDTCOREventDataObject.h" 18 | #import "GDTCOREventTransformer.h" 19 | #import "GDTCORTargets.h" 20 | #import "GDTCORTransport.h" 21 | #import "GoogleDataTransport.h" 22 | 23 | FOUNDATION_EXPORT double GoogleDataTransportVersionNumber; 24 | FOUNDATION_EXPORT const unsigned char GoogleDataTransportVersionString[]; 25 | 26 | -------------------------------------------------------------------------------- /Pods/Target Support Files/TextFieldEffects/TextFieldEffects.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/TextFieldEffects 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 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}/TextFieldEffects 9 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Pods/Pageboy/Sources/Pageboy/Utilities/Extensions/UIView+Animation.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIView+Animation.swift 3 | // Pageboy 4 | // 5 | // Created by Merrick Sapsford on 26/04/2018. 6 | // Copyright © 2018 UI At Six. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension UIView { 12 | 13 | func crossDissolve(duration: TimeInterval = 0.25, 14 | during animations: @escaping () -> Void, 15 | completion: ((Bool) -> Void)? = nil) { 16 | UIView.transition(with: self, 17 | duration: duration, 18 | options: .transitionCrossDissolve, 19 | animations: animations, 20 | completion: completion) 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GTMSessionFetcher/GTMSessionFetcher.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -framework "Security" 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}/GTMSessionFetcher 9 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 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/GTMSessionFetcher/GTMSessionFetcher.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GTMSessionFetcher 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -framework "Security" 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}/GTMSessionFetcher 9 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | # Uncomment the next line to define a global platform for your project 2 | # platform :ios, '9.0' 3 | 4 | target 'Writing' do 5 | # Comment the next line if you don't want to use dynamic frameworks 6 | use_frameworks! 7 | pod 'Firebase/Auth' 8 | pod 'Firebase/Firestore' 9 | pod 'TextFieldEffects' 10 | pod 'IQKeyboardManagerSwift' 11 | pod 'NotificationBannerSwift', '~> 3.0.0' 12 | pod 'SwiftOverlays', '~> 5.0.1' 13 | pod 'Tabman', '~> 2.11' 14 | pod 'MKRingProgressView' 15 | pod 'LSHContributionView' 16 | pod 'YPImagePicker' 17 | pod 'Firebase/Storage' 18 | pod 'ImageViewer.swift', '~> 3.0' 19 | pod 'ImageViewer.swift/Fetcher', '~> 3.0' 20 | pod 'SKPhotoBrowser' 21 | pod "AlignedCollectionViewFlowLayout" 22 | # Pods for Writing 23 | 24 | end 25 | -------------------------------------------------------------------------------- /Pods/Target Support Files/PromisesObjC/PromisesObjC.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" 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}/PromisesObjC 9 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 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/PromisesObjC/PromisesObjC.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_TARGET_SRCROOT}/Sources/FBLPromises/include" 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}/PromisesObjC 9 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 10 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 11 | SKIP_INSTALL = YES 12 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/rsa_extra/rsa_print.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2006-2017 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #include 11 | 12 | #include 13 | 14 | 15 | int RSA_print(BIO *bio, const RSA *rsa, int indent) { 16 | EVP_PKEY *pkey = EVP_PKEY_new(); 17 | int ret = pkey != NULL && 18 | EVP_PKEY_set1_RSA(pkey, (RSA *)rsa) && 19 | EVP_PKEY_print_private(bio, pkey, indent, NULL); 20 | EVP_PKEY_free(pkey); 21 | return ret; 22 | } 23 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/crypto/rsa_extra/rsa_print.c.grpc_back: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2006-2017 The OpenSSL Project Authors. All Rights Reserved. 3 | * 4 | * Licensed under the OpenSSL license (the "License"). You may not use 5 | * this file except in compliance with the License. You can obtain a copy 6 | * in the file LICENSE in the source distribution or at 7 | * https://www.openssl.org/source/license.html 8 | */ 9 | 10 | #include 11 | 12 | #include 13 | 14 | 15 | int RSA_print(BIO *bio, const RSA *rsa, int indent) { 16 | EVP_PKEY *pkey = EVP_PKEY_new(); 17 | int ret = pkey != NULL && 18 | EVP_PKEY_set1_RSA(pkey, (RSA *)rsa) && 19 | EVP_PKEY_print_private(bio, pkey, indent, NULL); 20 | EVP_PKEY_free(pkey); 21 | return ret; 22 | } 23 | -------------------------------------------------------------------------------- /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/Target Support Files/Tabman/Tabman.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Tabman 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Pageboy" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 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}/Tabman 10 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 11 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 12 | SKIP_INSTALL = YES 13 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 14 | -------------------------------------------------------------------------------- /Writing/Controllers/CustomTableViewCells/ChallengeTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // challengeTableViewCell.swift 3 | // Writing 4 | // 챌린지 선택 뷰 커스템 셀 5 | // Created by IT learning on 2021/08/11. 6 | // 7 | 8 | import UIKit 9 | 10 | class ChallengeTableViewCell: UITableViewCell { 11 | 12 | //MARK: - 테이블 뷰 셀 구성요소들 13 | @IBOutlet weak var circleLayer: UIView! 14 | @IBOutlet weak var levelLayer: UILabel! 15 | @IBOutlet weak var introduceLayer: UILabel! 16 | override func awakeFromNib() { 17 | super.awakeFromNib() 18 | 19 | } 20 | 21 | 22 | 23 | override func setSelected(_ selected: Bool, animated: Bool) { 24 | super.setSelected(selected, animated: animated) 25 | 26 | // Configure the view for the selected state 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Tabman/Tabman.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Tabman 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Pageboy" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 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}/Tabman 10 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 11 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 12 | SKIP_INSTALL = YES 13 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 14 | -------------------------------------------------------------------------------- /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/Tabman/Sources/Tabman/Bar/BarLayout/TMBarLayoutInsetGuides.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TMBarLayoutInsetGuides.swift 3 | // Tabman 4 | // 5 | // Created by Merrick Sapsford on 08/08/2018. 6 | // Copyright © 2019 UI At Six. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | /// Object that provides layout guides for bar layout insets. 12 | internal protocol TMBarLayoutInsetGuides: class { 13 | 14 | /// The leading inset guide for the layout. 15 | var leadingInset: UILayoutGuide { get } 16 | /// The trailing inset guide for the layout. 17 | var trailingInset: UILayoutGuide { get } 18 | /// The insetted guide for the content in the layout. 19 | var content: UILayoutGuide { get } 20 | 21 | /// The insets that are applied to the layout. 22 | var insets: UIEdgeInsets { get set } 23 | } 24 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MKRingProgressView/MKRingProgressView.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/MKRingProgressView 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -framework "UIKit" 5 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 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}/MKRingProgressView 10 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 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/MKRingProgressView/MKRingProgressView.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/MKRingProgressView 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -framework "UIKit" 5 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 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}/MKRingProgressView 10 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 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/MarqueeLabel/MarqueeLabel.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -framework "QuartzCore" -framework "UIKit" 5 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 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}/MarqueeLabel 10 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 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/MarqueeLabel/MarqueeLabel.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -framework "QuartzCore" -framework "UIKit" 5 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 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}/MarqueeLabel 10 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 11 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 12 | SKIP_INSTALL = YES 13 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 14 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /Pods/Target Support Files/abseil/abseil.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_SEARCH_USER_PATHS = NO 2 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 3 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/abseil 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | OTHER_LDFLAGS = $(inherited) -l"c++" 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}/abseil 10 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 11 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 12 | SKIP_INSTALL = YES 13 | USER_HEADER_SEARCH_PATHS = $(inherited) "$(PODS_TARGET_SRCROOT)" 14 | USE_HEADERMAP = NO 15 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 16 | -------------------------------------------------------------------------------- /Pods/Target Support Files/abseil/abseil.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_SEARCH_USER_PATHS = NO 2 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 3 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/abseil 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | OTHER_LDFLAGS = $(inherited) -l"c++" 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}/abseil 10 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 11 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 12 | SKIP_INSTALL = YES 13 | USER_HEADER_SEARCH_PATHS = $(inherited) "$(PODS_TARGET_SRCROOT)" 14 | USE_HEADERMAP = NO 15 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 16 | -------------------------------------------------------------------------------- /Pods/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/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 | #import "FIRVersion.h" 22 | -------------------------------------------------------------------------------- /Pods/Tabman/Sources/Tabman/Bar/TMAnimation.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TMAnimation.swift 3 | // Tabman 4 | // 5 | // Created by Merrick Sapsford on 30/10/2018. 6 | // Copyright © 2019 UI At Six. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | /// Configuration for an animation. 12 | public struct TMAnimation { 13 | /// Whether the animation is enabled. 14 | public let isEnabled: Bool 15 | /// Duration of the animation in seconds. 16 | public let duration: TimeInterval 17 | 18 | /// Create an animation configuration. 19 | /// 20 | /// - Parameters: 21 | /// - isEnabled: Whether the animation is enabled. 22 | /// - duration: Duration of the animation in seconds. 23 | public init(isEnabled: Bool, duration: TimeInterval) { 24 | self.isEnabled = isEnabled 25 | self.duration = duration 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Pods/abseil/absl/strings/internal/str_format/float_conversion.h: -------------------------------------------------------------------------------- 1 | #ifndef ABSL_STRINGS_INTERNAL_STR_FORMAT_FLOAT_CONVERSION_H_ 2 | #define ABSL_STRINGS_INTERNAL_STR_FORMAT_FLOAT_CONVERSION_H_ 3 | 4 | #include "absl/strings/internal/str_format/extension.h" 5 | 6 | namespace absl { 7 | ABSL_NAMESPACE_BEGIN 8 | namespace str_format_internal { 9 | 10 | bool ConvertFloatImpl(float v, const ConversionSpec &conv, 11 | FormatSinkImpl *sink); 12 | 13 | bool ConvertFloatImpl(double v, const ConversionSpec &conv, 14 | FormatSinkImpl *sink); 15 | 16 | bool ConvertFloatImpl(long double v, const ConversionSpec &conv, 17 | FormatSinkImpl *sink); 18 | 19 | } // namespace str_format_internal 20 | ABSL_NAMESPACE_END 21 | } // namespace absl 22 | 23 | #endif // ABSL_STRINGS_INTERNAL_STR_FORMAT_FLOAT_CONVERSION_H_ 24 | -------------------------------------------------------------------------------- /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-Core/src/core/ext/upb-generated/envoy/type/http.upb.c: -------------------------------------------------------------------------------- 1 | /* This file was generated by upbc (the upb compiler) from the input 2 | * file: 3 | * 4 | * envoy/type/http.proto 5 | * 6 | * Do not edit -- your changes will be discarded when the file is 7 | * regenerated. */ 8 | 9 | #include 10 | #if COCOAPODS==1 11 | #include "third_party/upb/upb/msg.h" 12 | #else 13 | #include "upb/msg.h" 14 | #endif 15 | #if COCOAPODS==1 16 | #include "src/core/ext/upb-generated/envoy/type/http.upb.h" 17 | #else 18 | #include "envoy/type/http.upb.h" 19 | #endif 20 | 21 | #if COCOAPODS==1 22 | #include "third_party/upb/upb/port_def.inc" 23 | #else 24 | #include "upb/port_def.inc" 25 | #endif 26 | 27 | #if COCOAPODS==1 28 | #include "third_party/upb/upb/port_undef.inc" 29 | #else 30 | #include "upb/port_undef.inc" 31 | #endif 32 | 33 | -------------------------------------------------------------------------------- /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-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/Pageboy/Sources/Pageboy/Utilities/Extensions/UIApplication+SafeShared.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIApplication+SafeShared.swift 3 | // Pageboy 4 | // 5 | // Created by Merrick Sapsford on 05/01/2018. 6 | // Copyright © 2018 Merrick Sapsford. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | internal extension UIApplication { 12 | 13 | static var safeShared: UIApplication? { 14 | guard #available(iOSApplicationExtension 8, *) else { 15 | return nil 16 | } 17 | 18 | guard UIApplication.responds(to: NSSelectorFromString("sharedApplication")), 19 | let unmanagedSharedApplication = UIApplication.perform(NSSelectorFromString("sharedApplication")) else { 20 | return nil 21 | } 22 | 23 | return unmanagedSharedApplication.takeUnretainedValue() as? UIApplication 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /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/Pageboy/Sources/Pageboy/Utilities/Extensions/UIView+Localization.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UIView+Localization.swift 3 | // Pageboy 4 | // 5 | // Created by Merrick Sapsford on 18/06/2017. 6 | // Copyright © 2018 UI At Six. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension UIView { 12 | 13 | /// Whether the layout direction of the view is right to left. 14 | var layoutIsRightToLeft: Bool { 15 | var layoutDirection: UIUserInterfaceLayoutDirection! 16 | DispatchQueue.executeInMainThread { 17 | layoutDirection = self.getUserInterfaceLayoutDirection() 18 | } 19 | return layoutDirection == .rightToLeft 20 | } 21 | 22 | private func getUserInterfaceLayoutDirection() -> UIUserInterfaceLayoutDirection { 23 | return UIView.userInterfaceLayoutDirection(for: semanticContentAttribute) 24 | } 25 | 26 | } 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/FirebaseCoreDiagnostics/Firebase/CoreDiagnostics/FIRCDLibrary/Public/FIRCoreDiagnostics.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2020 Google LLC 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 | // There are no actual public headers in the lib. This is a dummy public header to prevent Cocoapods 18 | // from adding all internal headers as public. 19 | -------------------------------------------------------------------------------- /Pods/Tabman/Sources/Tabman/Bar/BarView/TMBarViewFocusProvider.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TMBarViewFocusProvider.swift 3 | // Tabman 4 | // 5 | // Created by Merrick Sapsford on 07/06/2018. 6 | // Copyright © 2019 UI At Six. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | /// An object that can provide focus related positional data to a BarView. 12 | public protocol TMBarViewFocusProvider: class { 13 | 14 | /** 15 | Calculate the 'focusArea' for the current position and capacity. 16 | 17 | This `CGRect` defines the area of the layout that should currently be highlighted for the selected bar button. 18 | 19 | - Parameter position: Current position to display. 20 | - Parameter capacity: Capacity of the bar (items). 21 | 22 | - Returns: Calculated focus rect. 23 | **/ 24 | func focusArea(for position: CGFloat, capacity: Int) -> CGRect 25 | } 26 | -------------------------------------------------------------------------------- /Pods/Tabman/Sources/Tabman/Bar/TMTransition.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TMTransition.swift 3 | // Tabman 4 | // 5 | // Created by Merrick Sapsford on 30/10/2018. 6 | // Copyright © 2019 UI At Six. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | /// Style of transition to use for updates. 12 | /// 13 | /// - progressive: Progress will transition smoothly, and interpolate between values. 14 | /// - snap: Progress will transition between ranges when the mid-threshold is reached using animation. 15 | /// - none: Progress will transition between ranges when the mid-threshold is reached without any animation. 16 | public enum TMTransitionStyle { 17 | case progressive 18 | case snap 19 | case none 20 | } 21 | 22 | /// Object that can provide an animation style. 23 | internal protocol TMTransitionStyleable: class { 24 | 25 | var transitionStyle: TMTransitionStyle { get set } 26 | } 27 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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/Target Support Files/IQKeyboardManagerSwift/IQKeyboardManagerSwift.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -framework "CoreGraphics" -framework "Foundation" -framework "QuartzCore" -framework "UIKit" 5 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 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}/IQKeyboardManagerSwift 10 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 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/IQKeyboardManagerSwift/IQKeyboardManagerSwift.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/IQKeyboardManagerSwift 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | OTHER_LDFLAGS = $(inherited) -framework "CoreGraphics" -framework "Foundation" -framework "QuartzCore" -framework "UIKit" 5 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 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}/IQKeyboardManagerSwift 10 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 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/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 | 1.28.2 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/Target Support Files/NotificationBannerSwift/NotificationBannerSwift.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/NotificationBannerSwift 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 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}/NotificationBannerSwift 10 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 11 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 12 | SKIP_INSTALL = YES 13 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 14 | -------------------------------------------------------------------------------- /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/Target Support Files/NotificationBannerSwift/NotificationBannerSwift.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/NotificationBannerSwift 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/MarqueeLabel" "${PODS_CONFIGURATION_BUILD_DIR}/SnapKit" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 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}/NotificationBannerSwift 10 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 11 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 12 | SKIP_INSTALL = YES 13 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 14 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/completion_queue_impl.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_COMPLETION_QUEUE_IMPL_H 20 | #define GRPCPP_COMPLETION_QUEUE_IMPL_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_COMPLETION_QUEUE_IMPL_H 25 | -------------------------------------------------------------------------------- /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/third_party/upb/upb/port.c: -------------------------------------------------------------------------------- 1 | 2 | #if COCOAPODS==1 3 | #include "third_party/upb/upb/port_def.inc" 4 | #else 5 | #include "upb/port_def.inc" 6 | #endif 7 | 8 | #ifdef UPB_MSVC_VSNPRINTF 9 | /* Visual C++ earlier than 2015 doesn't have standard C99 snprintf and 10 | * vsnprintf. To support them, missing functions are manually implemented 11 | * using the existing secure functions. */ 12 | int msvc_vsnprintf(char* s, size_t n, const char* format, va_list arg) { 13 | if (!s) { 14 | return _vscprintf(format, arg); 15 | } 16 | int ret = _vsnprintf_s(s, n, _TRUNCATE, format, arg); 17 | if (ret < 0) { 18 | ret = _vscprintf(format, arg); 19 | } 20 | return ret; 21 | } 22 | 23 | int msvc_snprintf(char* s, size_t n, const char* format, ...) { 24 | va_list arg; 25 | va_start(arg, format); 26 | int ret = msvc_vsnprintf(s, n, format, arg); 27 | va_end(arg); 28 | return ret; 29 | } 30 | #endif 31 | -------------------------------------------------------------------------------- /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/gRPC-C++/include/grpcpp/support/sync_stream_impl.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_SYNC_STREAM_IMPL_H 20 | #define GRPCPP_SUPPORT_SYNC_STREAM_IMPL_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_SYNC_STREAM_IMPL_H 25 | -------------------------------------------------------------------------------- /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/async_stream_impl.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_ASYNC_STREAM_IMPL_H 20 | #define GRPCPP_SUPPORT_ASYNC_STREAM_IMPL_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_ASYNC_STREAM_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/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/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.28.2"; } 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/FirebaseAuth/FirebaseAuth/Sources/MultiFactor/FIRMultiFactorConstants.m: -------------------------------------------------------------------------------- 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 | #import 18 | #if TARGET_OS_IOS 19 | 20 | #import 21 | 22 | #pragma mark - Multi Factor ID constants 23 | 24 | NSString *const FIRPhoneMultiFactorID = @"1"; 25 | 26 | #endif 27 | -------------------------------------------------------------------------------- /Pods/Tabman/Sources/Tabman/Bar/Utility/BarMath.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BarMath.swift 3 | // Tabman 4 | // 5 | // Created by Merrick Sapsford on 07/06/2018. 6 | // Copyright © 2019 UI At Six. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class BarMath { 12 | 13 | static func localIndexRange(for position: CGFloat, minimum: Int, maximum: Int) -> Range { 14 | guard maximum > minimum else { 15 | return 0 ..< 0 16 | } 17 | let lower = floor(position) 18 | let upper = ceil(position) 19 | let minimum = CGFloat(minimum) 20 | let maximum = CGFloat(maximum) 21 | 22 | return Int(max(minimum, min(maximum, lower))) ..< Int(min(maximum, max(minimum, upper))) 23 | } 24 | 25 | static func localProgress(for position: CGFloat) -> CGFloat { 26 | var integral: Float = 0.0 27 | return CGFloat(modff(Float(position), &integral)) 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/client_callback_impl.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_CLIENT_CALLBACK_IMPL_H 20 | #define GRPCPP_SUPPORT_CLIENT_CALLBACK_IMPL_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_CLIENT_CALLBACK_IMPL_H 25 | -------------------------------------------------------------------------------- /Pods/gRPC-C++/include/grpcpp/support/server_callback_impl.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_SERVER_CALLBACK_IMPL_H 20 | #define GRPCPP_SUPPORT_SERVER_CALLBACK_IMPL_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_SERVER_CALLBACK_IMPL_H 25 | -------------------------------------------------------------------------------- /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_abseil.h: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Copyright 2020 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_ABSEIL_H 20 | #define GRPC_SUPPORT_SYNC_ABSEIL_H 21 | 22 | #include 23 | 24 | #include 25 | 26 | #endif /* GRPC_SUPPORT_SYNC_ABSEIL_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/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-C++/include/grpcpp/support/async_unary_call_impl.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_ASYNC_UNARY_CALL_IMPL_H 20 | #define GRPCPP_SUPPORT_ASYNC_UNARY_CALL_IMPL_H 21 | 22 | #include 23 | 24 | #endif // GRPCPP_SUPPORT_ASYNC_UNARY_CALL_IMPL_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/FirebaseCore/FirebaseCore/Sources/Public/FirebaseCore/FIRVersion.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2020 Google LLC 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 | NS_ASSUME_NONNULL_BEGIN 20 | 21 | /** Returns the current version of Firebase. */ 22 | NS_SWIFT_NAME(FirebaseVersion()) 23 | NSString* FIRFirebaseVersion(void); 24 | 25 | NS_ASSUME_NONNULL_END 26 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/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/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/src/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/src/include/openssl/is_boringssl.h.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/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/src/include/openssl/dtls1.h.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/src/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/BoringSSL-GRPC/src/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/BoringSSL-GRPC/src/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/src/include/openssl/safestack.h.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/GoogleUtilities/GoogleUtilities/Network/GULNetworkInternal.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 | #import "GoogleUtilities/Logger/Public/GoogleUtilities/GULLogger.h" 20 | 21 | extern NSString *const kGULNetworkErrorDomain; 22 | 23 | /// The logger service for GULNetwork. 24 | extern GULLoggerService kGULLoggerNetwork; 25 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pageboy/Pageboy-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 | 3.6.2 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SnapKit/SnapKit-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 | 5.0.1 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Tabman/Tabman-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 | 2.11.1 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 | 2.30908.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/BoringSSL-GRPC/src/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/Tabman/Sources/Tabman/Bar/BarIndicator/TMBarIndicatorLayoutHandler.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TMBarIndicatorLayoutHandler.swift 3 | // Tabman 4 | // 5 | // Created by Merrick Sapsford on 14/06/2018. 6 | // Copyright © 2019 UI At Six. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | /// Layout handler that updates a `TMBarIndicator` layout constraints for a new focus rect. 12 | internal final class TMBarIndicatorLayoutHandler { 13 | 14 | // MARK: Properties 15 | 16 | private let leading: NSLayoutConstraint? 17 | private let width: NSLayoutConstraint? 18 | 19 | // MARK: Init 20 | 21 | init(leading: NSLayoutConstraint?, 22 | width: NSLayoutConstraint?) { 23 | self.leading = leading 24 | self.width = width 25 | } 26 | 27 | // MARK: Updates 28 | 29 | func update(for rect: CGRect) { 30 | self.leading?.constant = rect.minX 31 | self.width?.constant = rect.size.width 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /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.20200225.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /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 | 1.28.2 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.28.2 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FirebaseAuth/FirebaseAuth-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 | 8.3.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 | 8.3.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" 4 | GCC_C_LANGUAGE_STANDARD = c99 5 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 6 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_TARGET_SRCROOT}" 7 | OTHER_LDFLAGS = $(inherited) -l"z" -framework "Security" -framework "SystemConfiguration" 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_ROOT = ${SRCROOT} 11 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/GoogleUtilities 12 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 13 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 14 | SKIP_INSTALL = YES 15 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 16 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MarqueeLabel/MarqueeLabel-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 | 4.0.5 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-Writing/Pods-Writing-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.0.0 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 | 2.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftOverlays/SwiftOverlays-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 | 5.0.1 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/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/src/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/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.7 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 | 7.5.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Pods/Target Support Files/GoogleUtilities/GoogleUtilities.release.xcconfig: -------------------------------------------------------------------------------- 1 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO 2 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC" 4 | GCC_C_LANGUAGE_STANDARD = c99 5 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 6 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_TARGET_SRCROOT}" 7 | OTHER_LDFLAGS = $(inherited) -l"z" -framework "Security" -framework "SystemConfiguration" 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_ROOT = ${SRCROOT} 11 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/GoogleUtilities 12 | PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates 13 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 14 | SKIP_INSTALL = YES 15 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 16 | -------------------------------------------------------------------------------- /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.1 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | --------------------------------------------------------------------------------