added iOS source code
[wl-app.git] / iOS / Pods / Realm / include / core / realm / data_type.hpp
1 /*************************************************************************
2  *
3  * Copyright 2016 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
19 #ifndef REALM_DATA_TYPE_HPP
20 #define REALM_DATA_TYPE_HPP
21
22 namespace realm {
23
24 class StringData;
25 class BinaryData;
26
27 typedef int64_t Int;
28 typedef bool Bool;
29 typedef float Float;
30 typedef double Double;
31 typedef realm::StringData String;
32 typedef realm::BinaryData Binary;
33
34
35 // Note: Value assignments must be kept in sync with <realm/column_type.h>
36 // Note: Value assignments must be kept in sync with <realm/c/data_type.h>
37 // Note: Value assignments must be kept in sync with <realm/objc/type.h>
38 // Note: Value assignments must be kept in sync with "com/realm/ColumnType.java"
39 // Note: Any change to this enum is a file-format breaking change.
40 enum DataType {
41     type_Int = 0,
42     type_Bool = 1,
43     type_Float = 9,
44     type_Double = 10,
45     type_String = 2,
46     type_Binary = 4,
47     type_OldDateTime = 7,
48     type_Timestamp = 8,
49     type_Table = 5,
50     type_Mixed = 6,
51     type_Link = 12,
52     type_LinkList = 13
53 };
54
55 /// See Descriptor::set_link_type().
56 enum LinkType {
57     link_Strong,
58     link_Weak,
59 };
60
61 } // namespace realm
62
63 #endif // REALM_DATA_TYPE_HPP