Realm.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2014 Realm Inc.
  4. //
  5. // Licensed under the Apache License, Version 2.0 (the "License");
  6. // you may not use this file except in compliance with the License.
  7. // You may obtain a copy of the License at
  8. //
  9. // http://www.apache.org/licenses/LICENSE-2.0
  10. //
  11. // Unless required by applicable law or agreed to in writing, software
  12. // distributed under the License is distributed on an "AS IS" BASIS,
  13. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. // See the License for the specific language governing permissions and
  15. // limitations under the License.
  16. //
  17. ////////////////////////////////////////////////////////////////////////////
  18. #import <Foundation/Foundation.h>
  19. #import <Realm/RLMArray.h>
  20. #import <Realm/RLMAsyncTask.h>
  21. #import <Realm/RLMDecimal128.h>
  22. #import <Realm/RLMDictionary.h>
  23. #import <Realm/RLMEmbeddedObject.h>
  24. #import <Realm/RLMError.h>
  25. #import <Realm/RLMMigration.h>
  26. #import <Realm/RLMObject.h>
  27. #import <Realm/RLMObjectId.h>
  28. #import <Realm/RLMObjectSchema.h>
  29. #import <Realm/RLMPlatform.h>
  30. #import <Realm/RLMProperty.h>
  31. #import <Realm/RLMRealm.h>
  32. #import <Realm/RLMRealmConfiguration.h>
  33. #import <Realm/RLMResults.h>
  34. #import <Realm/RLMSchema.h>
  35. #import <Realm/RLMSectionedResults.h>
  36. #import <Realm/RLMSet.h>
  37. #import <Realm/RLMValue.h>
  38. #import <Realm/NSError+RLMSync.h>
  39. #import <Realm/RLMAPIKeyAuth.h>
  40. #import <Realm/RLMApp.h>
  41. #import <Realm/RLMAsymmetricObject.h>
  42. #import <Realm/RLMBSON.h>
  43. #import <Realm/RLMCredentials.h>
  44. #import <Realm/RLMEmailPasswordAuth.h>
  45. #import <Realm/RLMFindOneAndModifyOptions.h>
  46. #import <Realm/RLMFindOptions.h>
  47. #import <Realm/RLMMongoClient.h>
  48. #import <Realm/RLMMongoCollection.h>
  49. #import <Realm/RLMMongoDatabase.h>
  50. #import <Realm/RLMNetworkTransport.h>
  51. #import <Realm/RLMProviderClient.h>
  52. #import <Realm/RLMPushClient.h>
  53. #import <Realm/RLMRealm+Sync.h>
  54. #import <Realm/RLMSyncConfiguration.h>
  55. #import <Realm/RLMSyncManager.h>
  56. #import <Realm/RLMSyncSession.h>
  57. #import <Realm/RLMSyncSubscription.h>
  58. #import <Realm/RLMUpdateResult.h>
  59. #import <Realm/RLMUser.h>
  60. #import <Realm/RLMUserAPIKey.h>