├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── QBRepository.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ ├── Realm │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Realm │ │ │ ├── NSError+RLMSync.m │ │ │ ├── ObjectStore │ │ │ │ └── src │ │ │ │ │ ├── binding_callback_thread_observer.cpp │ │ │ │ │ ├── collection_notifications.cpp │ │ │ │ │ ├── impl │ │ │ │ │ ├── apple │ │ │ │ │ │ ├── external_commit_helper.cpp │ │ │ │ │ │ └── keychain_helper.cpp │ │ │ │ │ ├── collection_change_builder.cpp │ │ │ │ │ ├── collection_notifier.cpp │ │ │ │ │ ├── list_notifier.cpp │ │ │ │ │ ├── object_notifier.cpp │ │ │ │ │ ├── primitive_list_notifier.cpp │ │ │ │ │ ├── realm_coordinator.cpp │ │ │ │ │ ├── results_notifier.cpp │ │ │ │ │ ├── transact_log_handler.cpp │ │ │ │ │ └── weak_realm_notifier.cpp │ │ │ │ │ ├── index_set.cpp │ │ │ │ │ ├── list.cpp │ │ │ │ │ ├── object.cpp │ │ │ │ │ ├── object_schema.cpp │ │ │ │ │ ├── object_store.cpp │ │ │ │ │ ├── placeholder.cpp │ │ │ │ │ ├── results.cpp │ │ │ │ │ ├── schema.cpp │ │ │ │ │ ├── shared_realm.cpp │ │ │ │ │ ├── sync │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── apple │ │ │ │ │ │ │ ├── network_reachability_observer.cpp │ │ │ │ │ │ │ └── system_configuration.cpp │ │ │ │ │ │ ├── sync_file.cpp │ │ │ │ │ │ └── sync_metadata.cpp │ │ │ │ │ ├── partial_sync.cpp │ │ │ │ │ ├── sync_config.cpp │ │ │ │ │ ├── sync_manager.cpp │ │ │ │ │ ├── sync_permission.cpp │ │ │ │ │ ├── sync_session.cpp │ │ │ │ │ └── sync_user.cpp │ │ │ │ │ ├── thread_safe_reference.cpp │ │ │ │ │ └── util │ │ │ │ │ └── uuid.cpp │ │ │ ├── RLMAccessor.mm │ │ │ ├── RLMAnalytics.mm │ │ │ ├── RLMArray.mm │ │ │ ├── RLMClassInfo.mm │ │ │ ├── RLMCollection.mm │ │ │ ├── RLMConstants.m │ │ │ ├── RLMJSONModels.m │ │ │ ├── RLMListBase.mm │ │ │ ├── RLMManagedArray.mm │ │ │ ├── RLMMigration.mm │ │ │ ├── RLMNetworkClient.mm │ │ │ ├── RLMObject.mm │ │ │ ├── RLMObjectBase.mm │ │ │ ├── RLMObjectSchema.mm │ │ │ ├── RLMObjectStore.mm │ │ │ ├── RLMObservation.mm │ │ │ ├── RLMOptionalBase.mm │ │ │ ├── RLMPredicateUtil.mm │ │ │ ├── RLMProperty.mm │ │ │ ├── RLMQueryUtil.mm │ │ │ ├── RLMRealm+Sync.mm │ │ │ ├── RLMRealm.mm │ │ │ ├── RLMRealmConfiguration+Sync.mm │ │ │ ├── RLMRealmConfiguration.mm │ │ │ ├── RLMRealmUtil.mm │ │ │ ├── RLMResults.mm │ │ │ ├── RLMSchema.mm │ │ │ ├── RLMSwiftSupport.m │ │ │ ├── RLMSyncConfiguration.mm │ │ │ ├── RLMSyncCredentials.m │ │ │ ├── RLMSyncManager.mm │ │ │ ├── RLMSyncPermission.mm │ │ │ ├── RLMSyncPermissionResults.mm │ │ │ ├── RLMSyncSession.mm │ │ │ ├── RLMSyncSessionRefreshHandle.mm │ │ │ ├── RLMSyncUser.mm │ │ │ ├── RLMSyncUtil.mm │ │ │ ├── RLMThreadSafeReference.mm │ │ │ ├── RLMUpdateChecker.mm │ │ │ ├── RLMUtil.mm │ │ │ └── Realm.modulemap │ │ ├── build.sh │ │ ├── core │ │ │ └── librealmcore-ios.a │ │ └── include │ │ │ ├── NSError+RLMSync.h │ │ │ ├── RLMAccessor.h │ │ │ ├── RLMAccessor.hpp │ │ │ ├── RLMAnalytics.hpp │ │ │ ├── RLMArray.h │ │ │ ├── RLMArray_Private.h │ │ │ ├── RLMArray_Private.hpp │ │ │ ├── RLMClassInfo.hpp │ │ │ ├── RLMCollection.h │ │ │ ├── RLMCollection_Private.h │ │ │ ├── RLMCollection_Private.hpp │ │ │ ├── RLMConstants.h │ │ │ ├── RLMJSONModels.h │ │ │ ├── RLMListBase.h │ │ │ ├── RLMMigration.h │ │ │ ├── RLMMigration_Private.h │ │ │ ├── RLMNetworkClient.h │ │ │ ├── RLMObject.h │ │ │ ├── RLMObjectBase.h │ │ │ ├── RLMObjectBase_Dynamic.h │ │ │ ├── RLMObjectBase_Private.h │ │ │ ├── RLMObjectSchema.h │ │ │ ├── RLMObjectSchema_Private.h │ │ │ ├── RLMObjectSchema_Private.hpp │ │ │ ├── RLMObjectStore.h │ │ │ ├── RLMObject_Private.h │ │ │ ├── RLMObject_Private.hpp │ │ │ ├── RLMObservation.hpp │ │ │ ├── RLMOptionalBase.h │ │ │ ├── RLMPlatform.h │ │ │ ├── RLMPredicateUtil.hpp │ │ │ ├── RLMPrefix.h │ │ │ ├── RLMProperty.h │ │ │ ├── RLMProperty_Private.h │ │ │ ├── RLMProperty_Private.hpp │ │ │ ├── RLMQueryUtil.hpp │ │ │ ├── RLMRealm+Sync.h │ │ │ ├── RLMRealm.h │ │ │ ├── RLMRealmConfiguration+Sync.h │ │ │ ├── RLMRealmConfiguration.h │ │ │ ├── RLMRealmConfiguration_Private.h │ │ │ ├── RLMRealmConfiguration_Private.hpp │ │ │ ├── RLMRealmUtil.hpp │ │ │ ├── RLMRealm_Dynamic.h │ │ │ ├── RLMRealm_Private.h │ │ │ ├── RLMRealm_Private.hpp │ │ │ ├── RLMResults.h │ │ │ ├── RLMResults_Private.h │ │ │ ├── RLMResults_Private.hpp │ │ │ ├── RLMSchema.h │ │ │ ├── RLMSchema_Private.h │ │ │ ├── RLMSchema_Private.hpp │ │ │ ├── RLMSwiftBridgingHeader.h │ │ │ ├── RLMSwiftSupport.h │ │ │ ├── RLMSyncConfiguration.h │ │ │ ├── RLMSyncConfiguration_Private.h │ │ │ ├── RLMSyncConfiguration_Private.hpp │ │ │ ├── RLMSyncCredentials.h │ │ │ ├── RLMSyncManager.h │ │ │ ├── RLMSyncManager_Private.h │ │ │ ├── RLMSyncPermission.h │ │ │ ├── RLMSyncPermissionResults.h │ │ │ ├── RLMSyncPermission_Private.hpp │ │ │ ├── RLMSyncSession.h │ │ │ ├── RLMSyncSessionRefreshHandle.h │ │ │ ├── RLMSyncSessionRefreshHandle.hpp │ │ │ ├── RLMSyncSession_Private.hpp │ │ │ ├── RLMSyncUser.h │ │ │ ├── RLMSyncUser_Private.hpp │ │ │ ├── RLMSyncUtil.h │ │ │ ├── RLMSyncUtil_Private.h │ │ │ ├── RLMSyncUtil_Private.hpp │ │ │ ├── RLMThreadSafeReference.h │ │ │ ├── RLMThreadSafeReference_Private.hpp │ │ │ ├── RLMUpdateChecker.hpp │ │ │ ├── RLMUtil.hpp │ │ │ ├── Realm.h │ │ │ ├── binding_callback_thread_observer.hpp │ │ │ ├── binding_context.hpp │ │ │ ├── collection_notifications.hpp │ │ │ ├── core │ │ │ ├── realm.hpp │ │ │ └── realm │ │ │ │ ├── alloc.hpp │ │ │ │ ├── alloc_slab.hpp │ │ │ │ ├── array.hpp │ │ │ │ ├── array_basic.hpp │ │ │ │ ├── array_basic_tpl.hpp │ │ │ │ ├── array_binary.hpp │ │ │ │ ├── array_blob.hpp │ │ │ │ ├── array_blobs_big.hpp │ │ │ │ ├── array_direct.hpp │ │ │ │ ├── array_integer.hpp │ │ │ │ ├── array_string.hpp │ │ │ │ ├── array_string_long.hpp │ │ │ │ ├── binary_data.hpp │ │ │ │ ├── bptree.hpp │ │ │ │ ├── chunked_binary.hpp │ │ │ │ ├── column.hpp │ │ │ │ ├── column_backlink.hpp │ │ │ │ ├── column_binary.hpp │ │ │ │ ├── column_fwd.hpp │ │ │ │ ├── column_link.hpp │ │ │ │ ├── column_linkbase.hpp │ │ │ │ ├── column_linklist.hpp │ │ │ │ ├── column_mixed.hpp │ │ │ │ ├── column_mixed_tpl.hpp │ │ │ │ ├── column_string.hpp │ │ │ │ ├── column_string_enum.hpp │ │ │ │ ├── column_table.hpp │ │ │ │ ├── column_timestamp.hpp │ │ │ │ ├── column_tpl.hpp │ │ │ │ ├── column_type.hpp │ │ │ │ ├── column_type_traits.hpp │ │ │ │ ├── data_type.hpp │ │ │ │ ├── descriptor.hpp │ │ │ │ ├── descriptor_fwd.hpp │ │ │ │ ├── disable_sync_to_disk.hpp │ │ │ │ ├── exceptions.hpp │ │ │ │ ├── group.hpp │ │ │ │ ├── group_shared.hpp │ │ │ │ ├── group_shared_options.hpp │ │ │ │ ├── group_writer.hpp │ │ │ │ ├── handover_defs.hpp │ │ │ │ ├── history.hpp │ │ │ │ ├── impl │ │ │ │ ├── array_writer.hpp │ │ │ │ ├── clamped_hex_dump.hpp │ │ │ │ ├── cont_transact_hist.hpp │ │ │ │ ├── destroy_guard.hpp │ │ │ │ ├── input_stream.hpp │ │ │ │ ├── output_stream.hpp │ │ │ │ ├── sequential_getter.hpp │ │ │ │ ├── simulated_failure.hpp │ │ │ │ └── transact_log.hpp │ │ │ │ ├── index_string.hpp │ │ │ │ ├── lang_bind_helper.hpp │ │ │ │ ├── link_view.hpp │ │ │ │ ├── link_view_fwd.hpp │ │ │ │ ├── metrics │ │ │ │ ├── metric_timer.hpp │ │ │ │ ├── metrics.hpp │ │ │ │ ├── query_info.hpp │ │ │ │ └── transaction_info.hpp │ │ │ │ ├── mixed.hpp │ │ │ │ ├── null.hpp │ │ │ │ ├── olddatetime.hpp │ │ │ │ ├── owned_data.hpp │ │ │ │ ├── parser │ │ │ │ ├── parser.hpp │ │ │ │ └── query_builder.hpp │ │ │ │ ├── query.hpp │ │ │ │ ├── query_conditions.hpp │ │ │ │ ├── query_engine.hpp │ │ │ │ ├── query_expression.hpp │ │ │ │ ├── query_operators.hpp │ │ │ │ ├── realm_nmmintrin.h │ │ │ │ ├── replication.hpp │ │ │ │ ├── row.hpp │ │ │ │ ├── spec.hpp │ │ │ │ ├── string_data.hpp │ │ │ │ ├── sync │ │ │ │ ├── changeset.hpp │ │ │ │ ├── changeset_cooker.hpp │ │ │ │ ├── changeset_encoder.hpp │ │ │ │ ├── changeset_parser.hpp │ │ │ │ ├── client.hpp │ │ │ │ ├── crypto.hpp │ │ │ │ ├── crypto_server.hpp │ │ │ │ ├── feature_token.hpp │ │ │ │ ├── history.hpp │ │ │ │ ├── instruction_applier.hpp │ │ │ │ ├── instruction_replication.hpp │ │ │ │ ├── instructions.hpp │ │ │ │ ├── metrics.hpp │ │ │ │ ├── object.hpp │ │ │ │ ├── object_id.hpp │ │ │ │ ├── protocol.hpp │ │ │ │ ├── server.hpp │ │ │ │ ├── server_configuration.hpp │ │ │ │ ├── transform.hpp │ │ │ │ └── version.hpp │ │ │ │ ├── table.hpp │ │ │ │ ├── table_ref.hpp │ │ │ │ ├── table_view.hpp │ │ │ │ ├── timestamp.hpp │ │ │ │ ├── unicode.hpp │ │ │ │ ├── util │ │ │ │ ├── aes_cryptor.hpp │ │ │ │ ├── any.hpp │ │ │ │ ├── assert.hpp │ │ │ │ ├── base64.hpp │ │ │ │ ├── basic_system_errors.hpp │ │ │ │ ├── bind_ptr.hpp │ │ │ │ ├── buffer.hpp │ │ │ │ ├── buffer_stream.hpp │ │ │ │ ├── call_with_tuple.hpp │ │ │ │ ├── cf_ptr.hpp │ │ │ │ ├── compression.hpp │ │ │ │ ├── config.h │ │ │ │ ├── encrypted_file_mapping.hpp │ │ │ │ ├── errno.hpp │ │ │ │ ├── features.h │ │ │ │ ├── file.hpp │ │ │ │ ├── file_mapper.hpp │ │ │ │ ├── hex_dump.hpp │ │ │ │ ├── http.hpp │ │ │ │ ├── inspect.hpp │ │ │ │ ├── interprocess_condvar.hpp │ │ │ │ ├── interprocess_mutex.hpp │ │ │ │ ├── json_parser.hpp │ │ │ │ ├── logger.hpp │ │ │ │ ├── memory_stream.hpp │ │ │ │ ├── misc_errors.hpp │ │ │ │ ├── miscellaneous.hpp │ │ │ │ ├── network.hpp │ │ │ │ ├── network_ssl.hpp │ │ │ │ ├── optional.hpp │ │ │ │ ├── overload.hpp │ │ │ │ ├── priority_queue.hpp │ │ │ │ ├── random.hpp │ │ │ │ ├── safe_int_ops.hpp │ │ │ │ ├── scope_exit.hpp │ │ │ │ ├── serializer.hpp │ │ │ │ ├── shared_ptr.hpp │ │ │ │ ├── string_buffer.hpp │ │ │ │ ├── terminate.hpp │ │ │ │ ├── thread.hpp │ │ │ │ ├── time.hpp │ │ │ │ ├── to_string.hpp │ │ │ │ ├── type_list.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ ├── uri.hpp │ │ │ │ ├── utf8.hpp │ │ │ │ └── websocket.hpp │ │ │ │ ├── utilities.hpp │ │ │ │ ├── version.hpp │ │ │ │ ├── version_id.hpp │ │ │ │ └── views.hpp │ │ │ ├── execution_context_id.hpp │ │ │ ├── feature_checks.hpp │ │ │ ├── impl │ │ │ ├── apple │ │ │ │ ├── external_commit_helper.hpp │ │ │ │ └── keychain_helper.hpp │ │ │ ├── collection_change_builder.hpp │ │ │ ├── collection_notifier.hpp │ │ │ ├── external_commit_helper.hpp │ │ │ ├── list_notifier.hpp │ │ │ ├── notification_wrapper.hpp │ │ │ ├── object_accessor_impl.hpp │ │ │ ├── object_notifier.hpp │ │ │ ├── primitive_list_notifier.hpp │ │ │ ├── realm_coordinator.hpp │ │ │ ├── results_notifier.hpp │ │ │ ├── transact_log_handler.hpp │ │ │ └── weak_realm_notifier.hpp │ │ │ ├── index_set.hpp │ │ │ ├── list.hpp │ │ │ ├── object.hpp │ │ │ ├── object_accessor.hpp │ │ │ ├── object_schema.hpp │ │ │ ├── object_store.hpp │ │ │ ├── property.hpp │ │ │ ├── results.hpp │ │ │ ├── schema.hpp │ │ │ ├── shared_realm.hpp │ │ │ ├── sync │ │ │ ├── impl │ │ │ │ ├── apple │ │ │ │ │ ├── network_reachability_observer.hpp │ │ │ │ │ └── system_configuration.hpp │ │ │ │ ├── network_reachability.hpp │ │ │ │ ├── sync_client.hpp │ │ │ │ ├── sync_file.hpp │ │ │ │ └── sync_metadata.hpp │ │ │ ├── partial_sync.hpp │ │ │ ├── sync_config.hpp │ │ │ ├── sync_manager.hpp │ │ │ ├── sync_permission.hpp │ │ │ ├── sync_session.hpp │ │ │ └── sync_user.hpp │ │ │ ├── thread_safe_reference.hpp │ │ │ └── util │ │ │ ├── aligned_union.hpp │ │ │ ├── apple │ │ │ └── event_loop_signal.hpp │ │ │ ├── atomic_shared_ptr.hpp │ │ │ ├── event_loop_signal.hpp │ │ │ ├── tagged_bool.hpp │ │ │ ├── time.hpp │ │ │ └── uuid.hpp │ ├── RealmSwift │ │ ├── LICENSE │ │ ├── README.md │ │ ├── RealmSwift │ │ │ ├── Aliases.swift │ │ │ ├── Error.swift │ │ │ ├── LinkingObjects.swift │ │ │ ├── List.swift │ │ │ ├── Migration.swift │ │ │ ├── Object.swift │ │ │ ├── ObjectSchema.swift │ │ │ ├── ObjectiveCSupport.swift │ │ │ ├── Optional.swift │ │ │ ├── Property.swift │ │ │ ├── Realm.swift │ │ │ ├── RealmCollection.swift │ │ │ ├── RealmConfiguration.swift │ │ │ ├── Results.swift │ │ │ ├── Schema.swift │ │ │ ├── SortDescriptor.swift │ │ │ ├── SwiftVersion.swift │ │ │ ├── Sync.swift │ │ │ ├── ThreadSafeReference.swift │ │ │ └── Util.swift │ │ └── build.sh │ ├── RxSwift │ │ ├── LICENSE.md │ │ ├── Platform │ │ │ ├── DataStructures │ │ │ │ ├── Bag.swift │ │ │ │ ├── InfiniteSequence.swift │ │ │ │ ├── PriorityQueue.swift │ │ │ │ └── Queue.swift │ │ │ ├── DeprecationWarner.swift │ │ │ ├── DispatchQueue+Extensions.swift │ │ │ ├── Platform.Darwin.swift │ │ │ ├── Platform.Linux.swift │ │ │ └── RecursiveLock.swift │ │ ├── README.md │ │ └── RxSwift │ │ │ ├── AnyObserver.swift │ │ │ ├── Cancelable.swift │ │ │ ├── Concurrency │ │ │ ├── AsyncLock.swift │ │ │ ├── Lock.swift │ │ │ ├── LockOwnerType.swift │ │ │ ├── SynchronizedDisposeType.swift │ │ │ ├── SynchronizedOnType.swift │ │ │ └── SynchronizedUnsubscribeType.swift │ │ │ ├── ConnectableObservableType.swift │ │ │ ├── Deprecated.swift │ │ │ ├── Disposable.swift │ │ │ ├── Disposables │ │ │ ├── AnonymousDisposable.swift │ │ │ ├── BinaryDisposable.swift │ │ │ ├── BooleanDisposable.swift │ │ │ ├── CompositeDisposable.swift │ │ │ ├── Disposables.swift │ │ │ ├── DisposeBag.swift │ │ │ ├── DisposeBase.swift │ │ │ ├── NopDisposable.swift │ │ │ ├── RefCountDisposable.swift │ │ │ ├── ScheduledDisposable.swift │ │ │ ├── SerialDisposable.swift │ │ │ ├── SingleAssignmentDisposable.swift │ │ │ └── SubscriptionDisposable.swift │ │ │ ├── Errors.swift │ │ │ ├── Event.swift │ │ │ ├── Extensions │ │ │ ├── Bag+Rx.swift │ │ │ └── String+Rx.swift │ │ │ ├── GroupedObservable.swift │ │ │ ├── ImmediateSchedulerType.swift │ │ │ ├── Observable.swift │ │ │ ├── ObservableConvertibleType.swift │ │ │ ├── ObservableType+Extensions.swift │ │ │ ├── ObservableType.swift │ │ │ ├── Observables │ │ │ ├── AddRef.swift │ │ │ ├── Amb.swift │ │ │ ├── AsMaybe.swift │ │ │ ├── AsSingle.swift │ │ │ ├── Buffer.swift │ │ │ ├── Catch.swift │ │ │ ├── CombineLatest+Collection.swift │ │ │ ├── CombineLatest+arity.swift │ │ │ ├── CombineLatest.swift │ │ │ ├── Concat.swift │ │ │ ├── Create.swift │ │ │ ├── Debounce.swift │ │ │ ├── Debug.swift │ │ │ ├── DefaultIfEmpty.swift │ │ │ ├── Deferred.swift │ │ │ ├── Delay.swift │ │ │ ├── DelaySubscription.swift │ │ │ ├── Dematerialize.swift │ │ │ ├── DistinctUntilChanged.swift │ │ │ ├── Do.swift │ │ │ ├── ElementAt.swift │ │ │ ├── Empty.swift │ │ │ ├── Enumerated.swift │ │ │ ├── Error.swift │ │ │ ├── Filter.swift │ │ │ ├── First.swift │ │ │ ├── Generate.swift │ │ │ ├── GroupBy.swift │ │ │ ├── Just.swift │ │ │ ├── Map.swift │ │ │ ├── Materialize.swift │ │ │ ├── Merge.swift │ │ │ ├── Multicast.swift │ │ │ ├── Never.swift │ │ │ ├── ObserveOn.swift │ │ │ ├── Optional.swift │ │ │ ├── Producer.swift │ │ │ ├── Range.swift │ │ │ ├── Reduce.swift │ │ │ ├── Repeat.swift │ │ │ ├── RetryWhen.swift │ │ │ ├── Sample.swift │ │ │ ├── Scan.swift │ │ │ ├── Sequence.swift │ │ │ ├── ShareReplayScope.swift │ │ │ ├── SingleAsync.swift │ │ │ ├── Sink.swift │ │ │ ├── Skip.swift │ │ │ ├── SkipUntil.swift │ │ │ ├── SkipWhile.swift │ │ │ ├── StartWith.swift │ │ │ ├── SubscribeOn.swift │ │ │ ├── Switch.swift │ │ │ ├── SwitchIfEmpty.swift │ │ │ ├── Take.swift │ │ │ ├── TakeLast.swift │ │ │ ├── TakeUntil.swift │ │ │ ├── TakeWhile.swift │ │ │ ├── Throttle.swift │ │ │ ├── Timeout.swift │ │ │ ├── Timer.swift │ │ │ ├── ToArray.swift │ │ │ ├── Using.swift │ │ │ ├── Window.swift │ │ │ ├── WithLatestFrom.swift │ │ │ ├── Zip+Collection.swift │ │ │ ├── Zip+arity.swift │ │ │ └── Zip.swift │ │ │ ├── ObserverType.swift │ │ │ ├── Observers │ │ │ ├── AnonymousObserver.swift │ │ │ ├── ObserverBase.swift │ │ │ └── TailRecursiveSink.swift │ │ │ ├── Reactive.swift │ │ │ ├── Rx.swift │ │ │ ├── RxMutableBox.swift │ │ │ ├── SchedulerType.swift │ │ │ ├── Schedulers │ │ │ ├── ConcurrentDispatchQueueScheduler.swift │ │ │ ├── ConcurrentMainScheduler.swift │ │ │ ├── CurrentThreadScheduler.swift │ │ │ ├── HistoricalScheduler.swift │ │ │ ├── HistoricalSchedulerTimeConverter.swift │ │ │ ├── Internal │ │ │ │ ├── DispatchQueueConfiguration.swift │ │ │ │ ├── InvocableScheduledItem.swift │ │ │ │ ├── InvocableType.swift │ │ │ │ ├── ScheduledItem.swift │ │ │ │ └── ScheduledItemType.swift │ │ │ ├── MainScheduler.swift │ │ │ ├── OperationQueueScheduler.swift │ │ │ ├── RecursiveScheduler.swift │ │ │ ├── SchedulerServices+Emulation.swift │ │ │ ├── SerialDispatchQueueScheduler.swift │ │ │ ├── VirtualTimeConverterType.swift │ │ │ └── VirtualTimeScheduler.swift │ │ │ ├── Subjects │ │ │ ├── AsyncSubject.swift │ │ │ ├── BehaviorSubject.swift │ │ │ ├── PublishSubject.swift │ │ │ ├── ReplaySubject.swift │ │ │ └── SubjectType.swift │ │ │ ├── SwiftSupport │ │ │ └── SwiftSupport.swift │ │ │ └── Traits │ │ │ ├── Completable+AndThen.swift │ │ │ ├── Completable.swift │ │ │ ├── Maybe.swift │ │ │ ├── ObservableType+PrimitiveSequence.swift │ │ │ ├── PrimitiveSequence+Zip+arity.swift │ │ │ ├── PrimitiveSequence.swift │ │ │ └── Single.swift │ └── Target Support Files │ │ ├── Pods-QBRepository_Tests │ │ ├── Info.plist │ │ ├── Pods-QBRepository_Tests-acknowledgements.markdown │ │ ├── Pods-QBRepository_Tests-acknowledgements.plist │ │ ├── Pods-QBRepository_Tests-dummy.m │ │ ├── Pods-QBRepository_Tests-frameworks.sh │ │ ├── Pods-QBRepository_Tests-resources.sh │ │ ├── Pods-QBRepository_Tests-umbrella.h │ │ ├── Pods-QBRepository_Tests.debug.xcconfig │ │ ├── Pods-QBRepository_Tests.modulemap │ │ └── Pods-QBRepository_Tests.release.xcconfig │ │ ├── QBRepository │ │ ├── Info.plist │ │ ├── QBRepository-dummy.m │ │ ├── QBRepository-prefix.pch │ │ ├── QBRepository-umbrella.h │ │ ├── QBRepository.modulemap │ │ └── QBRepository.xcconfig │ │ ├── Realm │ │ ├── Info.plist │ │ ├── Realm-dummy.m │ │ ├── Realm-prefix.pch │ │ ├── Realm.modulemap │ │ └── Realm.xcconfig │ │ ├── RealmSwift │ │ ├── Info.plist │ │ ├── RealmSwift-dummy.m │ │ ├── RealmSwift-prefix.pch │ │ ├── RealmSwift-umbrella.h │ │ ├── RealmSwift.modulemap │ │ └── RealmSwift.xcconfig │ │ └── RxSwift │ │ ├── Info.plist │ │ ├── RxSwift-dummy.m │ │ ├── RxSwift-prefix.pch │ │ ├── RxSwift-umbrella.h │ │ ├── RxSwift.modulemap │ │ └── RxSwift.xcconfig ├── QBRepository.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── QBRepository-Example.xcscheme ├── QBRepository.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── Tests │ ├── CDModel.xcdatamodeld │ └── CDModel.xcdatamodel │ │ └── contents │ ├── CoreDataRepositoryTests.swift │ ├── FileSystemRepositoryTests.swift │ ├── Info.plist │ ├── RealmRepositoryTests.swift │ └── Tests.swift ├── LICENSE ├── QBRepository.podspec ├── QBRepository ├── Assets │ └── .gitkeep └── Classes │ └── .gitkeep ├── README.md ├── Sources ├── AnyRepository.swift ├── ComparableKeyPath.swift ├── CoreData │ └── CoreDataRepository.swift ├── FileSystem │ └── FileSystemRepository.swift ├── HashableKeyPath.swift ├── Operator.swift ├── Predicate.swift ├── Property.swift ├── Query.swift ├── Realm │ ├── Realm+Cascade.swift │ └── RealmRepository.swift ├── Repository.swift ├── RepositoryEditResult.swift └── RxSwift │ └── RxRepository.swift └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/QBRepository.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Local Podspecs/QBRepository.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Realm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/LICENSE -------------------------------------------------------------------------------- /Example/Pods/Realm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/README.md -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/NSError+RLMSync.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/NSError+RLMSync.m -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/binding_callback_thread_observer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/binding_callback_thread_observer.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/collection_notifications.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/collection_notifications.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/impl/apple/external_commit_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/impl/apple/external_commit_helper.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/impl/apple/keychain_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/impl/apple/keychain_helper.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/impl/collection_change_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/impl/collection_change_builder.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/impl/collection_notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/impl/collection_notifier.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/impl/list_notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/impl/list_notifier.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/impl/object_notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/impl/object_notifier.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/impl/primitive_list_notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/impl/primitive_list_notifier.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/impl/realm_coordinator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/impl/realm_coordinator.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/impl/results_notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/impl/results_notifier.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/impl/transact_log_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/impl/transact_log_handler.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/impl/weak_realm_notifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/impl/weak_realm_notifier.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/index_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/index_set.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/list.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/object.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/object_schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/object_schema.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/object_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/object_store.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/placeholder.cpp: -------------------------------------------------------------------------------- 1 | // This file is intentionally left blank. 2 | -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/results.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/results.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/schema.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/schema.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/shared_realm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/shared_realm.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/sync/impl/apple/network_reachability_observer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/sync/impl/apple/network_reachability_observer.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/sync/impl/apple/system_configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/sync/impl/apple/system_configuration.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/sync/impl/sync_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/sync/impl/sync_file.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/sync/impl/sync_metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/sync/impl/sync_metadata.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/sync/partial_sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/sync/partial_sync.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/sync/sync_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/sync/sync_config.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/sync/sync_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/sync/sync_manager.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/sync/sync_permission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/sync/sync_permission.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/sync/sync_session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/sync/sync_session.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/sync/sync_user.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/sync/sync_user.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/thread_safe_reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/thread_safe_reference.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/ObjectStore/src/util/uuid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/ObjectStore/src/util/uuid.cpp -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMAccessor.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMAccessor.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMAnalytics.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMAnalytics.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMArray.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMArray.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMClassInfo.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMClassInfo.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMCollection.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMCollection.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMConstants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMConstants.m -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMJSONModels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMJSONModels.m -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMListBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMListBase.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMManagedArray.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMManagedArray.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMMigration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMMigration.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMNetworkClient.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMNetworkClient.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMObject.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMObject.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMObjectBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMObjectBase.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMObjectSchema.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMObjectSchema.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMObjectStore.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMObjectStore.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMObservation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMObservation.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMOptionalBase.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMOptionalBase.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMPredicateUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMPredicateUtil.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMProperty.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMQueryUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMQueryUtil.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMRealm+Sync.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMRealm+Sync.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMRealm.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMRealm.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMRealmConfiguration+Sync.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMRealmConfiguration+Sync.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMRealmConfiguration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMRealmConfiguration.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMRealmUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMRealmUtil.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMResults.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMResults.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMSchema.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMSchema.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMSwiftSupport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMSwiftSupport.m -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMSyncConfiguration.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMSyncConfiguration.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMSyncCredentials.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMSyncCredentials.m -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMSyncManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMSyncManager.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMSyncPermission.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMSyncPermission.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMSyncPermissionResults.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMSyncPermissionResults.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMSyncSession.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMSyncSession.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMSyncSessionRefreshHandle.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMSyncSessionRefreshHandle.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMSyncUser.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMSyncUser.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMSyncUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMSyncUtil.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMThreadSafeReference.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMThreadSafeReference.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMUpdateChecker.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMUpdateChecker.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/RLMUtil.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/RLMUtil.mm -------------------------------------------------------------------------------- /Example/Pods/Realm/Realm/Realm.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/Realm/Realm.modulemap -------------------------------------------------------------------------------- /Example/Pods/Realm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/build.sh -------------------------------------------------------------------------------- /Example/Pods/Realm/core/librealmcore-ios.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/core/librealmcore-ios.a -------------------------------------------------------------------------------- /Example/Pods/Realm/include/NSError+RLMSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/NSError+RLMSync.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMAccessor.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMAccessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMAccessor.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMAnalytics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMAnalytics.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMArray.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMArray_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMArray_Private.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMArray_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMArray_Private.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMClassInfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMClassInfo.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMCollection.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMCollection_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMCollection_Private.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMCollection_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMCollection_Private.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMConstants.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMJSONModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMJSONModels.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMListBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMListBase.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMMigration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMMigration.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMMigration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMMigration_Private.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMNetworkClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMNetworkClient.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMObject.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMObjectBase.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMObjectBase_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMObjectBase_Dynamic.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMObjectBase_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMObjectBase_Private.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMObjectSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMObjectSchema.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMObjectSchema_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMObjectSchema_Private.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMObjectSchema_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMObjectSchema_Private.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMObjectStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMObjectStore.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMObject_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMObject_Private.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMObject_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMObject_Private.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMObservation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMObservation.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMOptionalBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMOptionalBase.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMPlatform.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMPredicateUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMPredicateUtil.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMPrefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMPrefix.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMProperty.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMProperty_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMProperty_Private.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMProperty_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMProperty_Private.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMQueryUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMQueryUtil.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMRealm+Sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMRealm+Sync.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMRealm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMRealm.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMRealmConfiguration+Sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMRealmConfiguration+Sync.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMRealmConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMRealmConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMRealmConfiguration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMRealmConfiguration_Private.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMRealmConfiguration_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMRealmConfiguration_Private.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMRealmUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMRealmUtil.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMRealm_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMRealm_Dynamic.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMRealm_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMRealm_Private.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMRealm_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMRealm_Private.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMResults.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMResults_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMResults_Private.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMResults_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMResults_Private.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSchema.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSchema_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSchema_Private.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSchema_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSchema_Private.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSwiftBridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSwiftBridgingHeader.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSwiftSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSwiftSupport.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSyncConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSyncConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSyncConfiguration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSyncConfiguration_Private.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSyncConfiguration_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSyncConfiguration_Private.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSyncCredentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSyncCredentials.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSyncManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSyncManager.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSyncManager_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSyncManager_Private.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSyncPermission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSyncPermission.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSyncPermissionResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSyncPermissionResults.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSyncPermission_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSyncPermission_Private.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSyncSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSyncSession.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSyncSessionRefreshHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSyncSessionRefreshHandle.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSyncSessionRefreshHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSyncSessionRefreshHandle.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSyncSession_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSyncSession_Private.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSyncUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSyncUser.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSyncUser_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSyncUser_Private.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSyncUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSyncUtil.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSyncUtil_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSyncUtil_Private.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMSyncUtil_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMSyncUtil_Private.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMThreadSafeReference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMThreadSafeReference.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMThreadSafeReference_Private.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMThreadSafeReference_Private.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMUpdateChecker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMUpdateChecker.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/RLMUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/RLMUtil.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/Realm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/Realm.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/binding_callback_thread_observer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/binding_callback_thread_observer.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/binding_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/binding_context.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/collection_notifications.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/collection_notifications.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/alloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/alloc.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/alloc_slab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/alloc_slab.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/array.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/array_basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/array_basic.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/array_basic_tpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/array_basic_tpl.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/array_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/array_binary.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/array_blob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/array_blob.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/array_blobs_big.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/array_blobs_big.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/array_direct.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/array_direct.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/array_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/array_integer.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/array_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/array_string.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/array_string_long.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/array_string_long.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/binary_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/binary_data.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/bptree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/bptree.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/chunked_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/chunked_binary.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/column.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/column.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/column_backlink.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/column_backlink.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/column_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/column_binary.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/column_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/column_fwd.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/column_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/column_link.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/column_linkbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/column_linkbase.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/column_linklist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/column_linklist.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/column_mixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/column_mixed.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/column_mixed_tpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/column_mixed_tpl.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/column_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/column_string.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/column_string_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/column_string_enum.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/column_table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/column_table.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/column_timestamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/column_timestamp.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/column_tpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/column_tpl.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/column_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/column_type.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/column_type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/column_type_traits.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/data_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/data_type.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/descriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/descriptor.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/descriptor_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/descriptor_fwd.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/disable_sync_to_disk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/disable_sync_to_disk.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/exceptions.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/group.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/group_shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/group_shared.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/group_shared_options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/group_shared_options.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/group_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/group_writer.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/handover_defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/handover_defs.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/history.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/history.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/impl/array_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/impl/array_writer.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/impl/clamped_hex_dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/impl/clamped_hex_dump.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/impl/cont_transact_hist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/impl/cont_transact_hist.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/impl/destroy_guard.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/impl/destroy_guard.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/impl/input_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/impl/input_stream.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/impl/output_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/impl/output_stream.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/impl/sequential_getter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/impl/sequential_getter.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/impl/simulated_failure.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/impl/simulated_failure.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/impl/transact_log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/impl/transact_log.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/index_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/index_string.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/lang_bind_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/lang_bind_helper.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/link_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/link_view.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/link_view_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/link_view_fwd.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/metrics/metric_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/metrics/metric_timer.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/metrics/metrics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/metrics/metrics.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/metrics/query_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/metrics/query_info.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/metrics/transaction_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/metrics/transaction_info.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/mixed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/mixed.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/null.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/null.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/olddatetime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/olddatetime.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/owned_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/owned_data.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/parser/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/parser/parser.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/parser/query_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/parser/query_builder.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/query.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/query_conditions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/query_conditions.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/query_engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/query_engine.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/query_expression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/query_expression.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/query_operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/query_operators.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/realm_nmmintrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/realm_nmmintrin.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/replication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/replication.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/row.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/row.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/spec.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/string_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/string_data.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/changeset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/changeset.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/changeset_cooker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/changeset_cooker.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/changeset_encoder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/changeset_encoder.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/changeset_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/changeset_parser.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/client.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/crypto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/crypto.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/crypto_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/crypto_server.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/feature_token.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/feature_token.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/history.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/history.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/instruction_applier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/instruction_applier.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/instruction_replication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/instruction_replication.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/instructions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/instructions.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/metrics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/metrics.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/object.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/object_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/object_id.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/protocol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/protocol.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/server.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/server_configuration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/server_configuration.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/transform.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/sync/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/sync/version.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/table.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/table_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/table_ref.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/table_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/table_view.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/timestamp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/timestamp.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/unicode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/unicode.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/aes_cryptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/aes_cryptor.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/any.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/assert.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/base64.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/basic_system_errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/basic_system_errors.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/bind_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/bind_ptr.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/buffer.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/buffer_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/buffer_stream.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/call_with_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/call_with_tuple.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/cf_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/cf_ptr.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/compression.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/compression.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/config.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/encrypted_file_mapping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/encrypted_file_mapping.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/errno.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/errno.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/features.h -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/file.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/file_mapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/file_mapper.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/hex_dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/hex_dump.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/http.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/http.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/inspect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/inspect.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/interprocess_condvar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/interprocess_condvar.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/interprocess_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/interprocess_mutex.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/json_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/json_parser.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/logger.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/memory_stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/memory_stream.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/misc_errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/misc_errors.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/miscellaneous.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/miscellaneous.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/network.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/network_ssl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/network_ssl.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/optional.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/overload.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/overload.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/priority_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/priority_queue.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/random.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/safe_int_ops.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/safe_int_ops.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/scope_exit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/scope_exit.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/serializer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/serializer.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/shared_ptr.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/string_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/string_buffer.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/terminate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/terminate.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/thread.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/time.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/to_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/to_string.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/type_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/type_list.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/type_traits.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/uri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/uri.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/utf8.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/util/websocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/util/websocket.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/utilities.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/version.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/version_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/version_id.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/core/realm/views.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/core/realm/views.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/execution_context_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/execution_context_id.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/feature_checks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/feature_checks.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/impl/apple/external_commit_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/impl/apple/external_commit_helper.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/impl/apple/keychain_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/impl/apple/keychain_helper.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/impl/collection_change_builder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/impl/collection_change_builder.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/impl/collection_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/impl/collection_notifier.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/impl/external_commit_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/impl/external_commit_helper.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/impl/list_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/impl/list_notifier.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/impl/notification_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/impl/notification_wrapper.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/impl/object_accessor_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/impl/object_accessor_impl.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/impl/object_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/impl/object_notifier.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/impl/primitive_list_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/impl/primitive_list_notifier.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/impl/realm_coordinator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/impl/realm_coordinator.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/impl/results_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/impl/results_notifier.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/impl/transact_log_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/impl/transact_log_handler.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/impl/weak_realm_notifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/impl/weak_realm_notifier.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/index_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/index_set.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/list.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/object.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/object_accessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/object_accessor.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/object_schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/object_schema.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/object_store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/object_store.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/property.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/results.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/results.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/schema.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/schema.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/shared_realm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/shared_realm.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/sync/impl/apple/network_reachability_observer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/sync/impl/apple/network_reachability_observer.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/sync/impl/apple/system_configuration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/sync/impl/apple/system_configuration.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/sync/impl/network_reachability.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/sync/impl/network_reachability.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/sync/impl/sync_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/sync/impl/sync_client.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/sync/impl/sync_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/sync/impl/sync_file.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/sync/impl/sync_metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/sync/impl/sync_metadata.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/sync/partial_sync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/sync/partial_sync.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/sync/sync_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/sync/sync_config.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/sync/sync_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/sync/sync_manager.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/sync/sync_permission.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/sync/sync_permission.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/sync/sync_session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/sync/sync_session.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/sync/sync_user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/sync/sync_user.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/thread_safe_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/thread_safe_reference.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/util/aligned_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/util/aligned_union.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/util/apple/event_loop_signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/util/apple/event_loop_signal.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/util/atomic_shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/util/atomic_shared_ptr.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/util/event_loop_signal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/util/event_loop_signal.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/util/tagged_bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/util/tagged_bool.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/util/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/util/time.hpp -------------------------------------------------------------------------------- /Example/Pods/Realm/include/util/uuid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Realm/include/util/uuid.hpp -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/LICENSE -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/README.md -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/Aliases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/RealmSwift/Aliases.swift -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/RealmSwift/Error.swift -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/LinkingObjects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/RealmSwift/LinkingObjects.swift -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/List.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/RealmSwift/List.swift -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/Migration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/RealmSwift/Migration.swift -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/Object.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/RealmSwift/Object.swift -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/ObjectSchema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/RealmSwift/ObjectSchema.swift -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/ObjectiveCSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/RealmSwift/ObjectiveCSupport.swift -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/RealmSwift/Optional.swift -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/RealmSwift/Property.swift -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/Realm.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/RealmSwift/Realm.swift -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/RealmCollection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/RealmSwift/RealmCollection.swift -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/RealmConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/RealmSwift/RealmConfiguration.swift -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/Results.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/RealmSwift/Results.swift -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/Schema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/RealmSwift/Schema.swift -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/SortDescriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/RealmSwift/SortDescriptor.swift -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/SwiftVersion.swift: -------------------------------------------------------------------------------- 1 | let swiftLanguageVersion = "4.0.3" 2 | -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/Sync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/RealmSwift/Sync.swift -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/ThreadSafeReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/RealmSwift/ThreadSafeReference.swift -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/RealmSwift/Util.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/RealmSwift/Util.swift -------------------------------------------------------------------------------- /Example/Pods/RealmSwift/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RealmSwift/build.sh -------------------------------------------------------------------------------- /Example/Pods/RxSwift/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/LICENSE.md -------------------------------------------------------------------------------- /Example/Pods/RxSwift/Platform/DataStructures/Bag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/Platform/DataStructures/Bag.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/Platform/DataStructures/InfiniteSequence.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/Platform/DataStructures/PriorityQueue.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/Platform/DataStructures/Queue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/Platform/DataStructures/Queue.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/Platform/DeprecationWarner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/Platform/DeprecationWarner.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/Platform/DispatchQueue+Extensions.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/Platform/Platform.Darwin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/Platform/Platform.Darwin.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/Platform/Platform.Linux.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/Platform/Platform.Linux.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/Platform/RecursiveLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/Platform/RecursiveLock.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/README.md -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/AnyObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/AnyObserver.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Cancelable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Cancelable.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Concurrency/AsyncLock.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Concurrency/Lock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Concurrency/Lock.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Concurrency/LockOwnerType.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Concurrency/SynchronizedDisposeType.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Concurrency/SynchronizedOnType.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Concurrency/SynchronizedUnsubscribeType.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/ConnectableObservableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/ConnectableObservableType.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Deprecated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Deprecated.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Disposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Disposable.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Disposables/AnonymousDisposable.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Disposables/BinaryDisposable.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Disposables/BooleanDisposable.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Disposables/CompositeDisposable.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Disposables/Disposables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Disposables/Disposables.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Disposables/DisposeBag.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Disposables/DisposeBase.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Disposables/NopDisposable.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Disposables/RefCountDisposable.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Disposables/ScheduledDisposable.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Disposables/SerialDisposable.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Disposables/SingleAssignmentDisposable.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Disposables/SubscriptionDisposable.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Errors.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Event.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Extensions/Bag+Rx.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Extensions/String+Rx.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/GroupedObservable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/GroupedObservable.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/ImmediateSchedulerType.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observable.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/ObservableConvertibleType.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/ObservableType+Extensions.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/ObservableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/ObservableType.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/AddRef.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/AddRef.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Amb.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Amb.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/AsMaybe.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/AsSingle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/AsSingle.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Buffer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Buffer.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Catch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Catch.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/CombineLatest+Collection.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/CombineLatest+arity.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/CombineLatest.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Concat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Concat.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Create.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Create.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Debounce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Debounce.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Debug.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/DefaultIfEmpty.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Deferred.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Deferred.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Delay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Delay.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/DelaySubscription.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Dematerialize.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/DistinctUntilChanged.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Do.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Do.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/ElementAt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/ElementAt.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Empty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Empty.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Enumerated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Enumerated.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Error.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Filter.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/First.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/First.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Generate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Generate.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/GroupBy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/GroupBy.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Just.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Just.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Map.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Materialize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Materialize.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Merge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Merge.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Multicast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Multicast.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Never.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Never.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/ObserveOn.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Optional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Optional.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Producer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Producer.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Range.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Range.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Reduce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Reduce.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Repeat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Repeat.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/RetryWhen.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Sample.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Sample.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Scan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Scan.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Sequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Sequence.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/ShareReplayScope.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/SingleAsync.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Sink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Sink.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Skip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Skip.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/SkipUntil.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/SkipWhile.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/StartWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/StartWith.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/SubscribeOn.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Switch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Switch.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/SwitchIfEmpty.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Take.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Take.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/TakeLast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/TakeLast.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/TakeUntil.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/TakeWhile.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Throttle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Throttle.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Timeout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Timeout.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Timer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Timer.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/ToArray.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/ToArray.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Using.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Using.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Window.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Window.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/WithLatestFrom.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Zip+Collection.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Zip+arity.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observables/Zip.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observables/Zip.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/ObserverType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/ObserverType.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observers/AnonymousObserver.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observers/ObserverBase.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Observers/TailRecursiveSink.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Reactive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Reactive.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Rx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Rx.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/RxMutableBox.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/RxMutableBox.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/SchedulerType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/SchedulerType.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Schedulers/ConcurrentDispatchQueueScheduler.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Schedulers/ConcurrentMainScheduler.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Schedulers/CurrentThreadScheduler.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Schedulers/HistoricalScheduler.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Schedulers/HistoricalSchedulerTimeConverter.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Schedulers/Internal/DispatchQueueConfiguration.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableScheduledItem.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Schedulers/Internal/InvocableType.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItem.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Schedulers/Internal/ScheduledItemType.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Schedulers/MainScheduler.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Schedulers/OperationQueueScheduler.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Schedulers/RecursiveScheduler.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Schedulers/SchedulerServices+Emulation.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Schedulers/SerialDispatchQueueScheduler.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeConverterType.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Schedulers/VirtualTimeScheduler.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Subjects/AsyncSubject.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Subjects/BehaviorSubject.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Subjects/PublishSubject.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Subjects/ReplaySubject.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Subjects/SubjectType.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/SwiftSupport/SwiftSupport.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Traits/Completable+AndThen.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Traits/Completable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Traits/Completable.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Traits/Maybe.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Traits/Maybe.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Traits/ObservableType+PrimitiveSequence.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence+Zip+arity.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Traits/PrimitiveSequence.swift -------------------------------------------------------------------------------- /Example/Pods/RxSwift/RxSwift/Traits/Single.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/RxSwift/RxSwift/Traits/Single.swift -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-QBRepository_Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/Pods-QBRepository_Tests/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-QBRepository_Tests/Pods-QBRepository_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/Pods-QBRepository_Tests/Pods-QBRepository_Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-QBRepository_Tests/Pods-QBRepository_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/Pods-QBRepository_Tests/Pods-QBRepository_Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-QBRepository_Tests/Pods-QBRepository_Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/Pods-QBRepository_Tests/Pods-QBRepository_Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-QBRepository_Tests/Pods-QBRepository_Tests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/Pods-QBRepository_Tests/Pods-QBRepository_Tests-frameworks.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-QBRepository_Tests/Pods-QBRepository_Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/Pods-QBRepository_Tests/Pods-QBRepository_Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-QBRepository_Tests/Pods-QBRepository_Tests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/Pods-QBRepository_Tests/Pods-QBRepository_Tests-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-QBRepository_Tests/Pods-QBRepository_Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/Pods-QBRepository_Tests/Pods-QBRepository_Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-QBRepository_Tests/Pods-QBRepository_Tests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/Pods-QBRepository_Tests/Pods-QBRepository_Tests.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-QBRepository_Tests/Pods-QBRepository_Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/Pods-QBRepository_Tests/Pods-QBRepository_Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/QBRepository/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/QBRepository/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/QBRepository/QBRepository-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/QBRepository/QBRepository-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/QBRepository/QBRepository-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/QBRepository/QBRepository-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/QBRepository/QBRepository-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/QBRepository/QBRepository-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/QBRepository/QBRepository.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/QBRepository/QBRepository.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/QBRepository/QBRepository.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/QBRepository/QBRepository.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Realm/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/Realm/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Realm/Realm-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/Realm/Realm-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Realm/Realm-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/Realm/Realm-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Realm/Realm.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/Realm/Realm.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Realm/Realm.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/Realm/Realm.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RealmSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/RealmSwift/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RealmSwift/RealmSwift-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/RealmSwift/RealmSwift-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RealmSwift/RealmSwift-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/RealmSwift/RealmSwift-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RealmSwift/RealmSwift-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/RealmSwift/RealmSwift-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RealmSwift/RealmSwift.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/RealmSwift/RealmSwift.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RealmSwift/RealmSwift.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/RealmSwift/RealmSwift.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RxSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/RxSwift/Info.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RxSwift/RxSwift-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/RxSwift/RxSwift-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RxSwift/RxSwift-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/RxSwift/RxSwift-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RxSwift/RxSwift-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/RxSwift/RxSwift-umbrella.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RxSwift/RxSwift.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/RxSwift/RxSwift.modulemap -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/RxSwift/RxSwift.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Pods/Target Support Files/RxSwift/RxSwift.xcconfig -------------------------------------------------------------------------------- /Example/QBRepository.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/QBRepository.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/QBRepository.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/QBRepository.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/QBRepository.xcodeproj/xcshareddata/xcschemes/QBRepository-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/QBRepository.xcodeproj/xcshareddata/xcschemes/QBRepository-Example.xcscheme -------------------------------------------------------------------------------- /Example/QBRepository.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/QBRepository.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/QBRepository.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/QBRepository.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Tests/CDModel.xcdatamodeld/CDModel.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Tests/CDModel.xcdatamodeld/CDModel.xcdatamodel/contents -------------------------------------------------------------------------------- /Example/Tests/CoreDataRepositoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Tests/CoreDataRepositoryTests.swift -------------------------------------------------------------------------------- /Example/Tests/FileSystemRepositoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Tests/FileSystemRepositoryTests.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/RealmRepositoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Tests/RealmRepositoryTests.swift -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Example/Tests/Tests.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/LICENSE -------------------------------------------------------------------------------- /QBRepository.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/QBRepository.podspec -------------------------------------------------------------------------------- /QBRepository/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /QBRepository/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/README.md -------------------------------------------------------------------------------- /Sources/AnyRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Sources/AnyRepository.swift -------------------------------------------------------------------------------- /Sources/ComparableKeyPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Sources/ComparableKeyPath.swift -------------------------------------------------------------------------------- /Sources/CoreData/CoreDataRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Sources/CoreData/CoreDataRepository.swift -------------------------------------------------------------------------------- /Sources/FileSystem/FileSystemRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Sources/FileSystem/FileSystemRepository.swift -------------------------------------------------------------------------------- /Sources/HashableKeyPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Sources/HashableKeyPath.swift -------------------------------------------------------------------------------- /Sources/Operator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Sources/Operator.swift -------------------------------------------------------------------------------- /Sources/Predicate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Sources/Predicate.swift -------------------------------------------------------------------------------- /Sources/Property.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Sources/Property.swift -------------------------------------------------------------------------------- /Sources/Query.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Sources/Query.swift -------------------------------------------------------------------------------- /Sources/Realm/Realm+Cascade.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Sources/Realm/Realm+Cascade.swift -------------------------------------------------------------------------------- /Sources/Realm/RealmRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Sources/Realm/RealmRepository.swift -------------------------------------------------------------------------------- /Sources/Repository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Sources/Repository.swift -------------------------------------------------------------------------------- /Sources/RepositoryEditResult.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Sources/RepositoryEditResult.swift -------------------------------------------------------------------------------- /Sources/RxSwift/RxRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/QuickBirdEng/QBRepository/HEAD/Sources/RxSwift/RxRepository.swift -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------