Realm C++ SDK Version v2.2.0

sdk.hpp

1
2//
3// Copyright 2022 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//
18
19#ifndef CPPREALM_SDK_HPP
20#define CPPREALM_SDK_HPP
21
22#if __has_include(<cpprealm/util/config.h>)
23#include <cpprealm/util/config.h>
24#endif
25
26#include <utility>
27
28#include <cpprealm/bson.hpp>
29#include <cpprealm/schema.hpp>
30#include <cpprealm/notifications.hpp>
31#include <cpprealm/app.hpp>
32#include <cpprealm/flex_sync.hpp>
33#include <cpprealm/thread_safe_reference.hpp>
34#include <cpprealm/rbool.hpp>
35
36#include <cpprealm/db.hpp>
37#include <cpprealm/client_reset.hpp>
38#include <cpprealm/link.hpp>
39#include <cpprealm/macros.hpp>
40#include <cpprealm/managed_binary.hpp>
41#include <cpprealm/managed_decimal.hpp>
42#include <cpprealm/managed_dictionary.hpp>
43#include <cpprealm/managed_list.hpp>
44#include <cpprealm/managed_mixed.hpp>
45#include <cpprealm/managed_numeric.hpp>
46#include <cpprealm/managed_objectid.hpp>
47#include <cpprealm/managed_primary_key.hpp>
48#include <cpprealm/managed_set.hpp>
49#include <cpprealm/managed_string.hpp>
50#include <cpprealm/managed_timestamp.hpp>
51#include <cpprealm/managed_uuid.hpp>
52#include <cpprealm/observation.hpp>
53#include <cpprealm/results.hpp>
54
55#endif /* CPPREALM_SDK_HPP */