added iOS source code
[wl-app.git] / iOS / Pods / Realm / include / core / realm / sync / version.hpp
1 /*************************************************************************
2  *
3  * REALM CONFIDENTIAL
4  * __________________
5  *
6  *  [2011] - [2013] Realm Inc
7  *  All Rights Reserved.
8  *
9  * NOTICE:  All information contained herein is, and remains
10  * the property of Realm Incorporated and its suppliers,
11  * if any.  The intellectual and technical concepts contained
12  * herein are proprietary to Realm Incorporated
13  * and its suppliers and may be covered by U.S. and Foreign Patents,
14  * patents in process, and are protected by trade secret or copyright law.
15  * Dissemination of this information or reproduction of this material
16  * is strictly forbidden unless prior written permission is obtained
17  * from Realm Incorporated.
18  *
19  **************************************************************************/
20 #ifndef REALM_SYNC_VERSION_HPP
21 #define REALM_SYNC_VERSION_HPP
22
23 #include <realm/util/features.h>
24
25 #define REALM_SYNC_VER_MAJOR 2
26 #define REALM_SYNC_VER_MINOR 2
27 #define REALM_SYNC_VER_PATCH 9
28 #define REALM_SYNC_PRODUCT_NAME "realm-sync"
29
30 #define REALM_SYNC_VER_STRING REALM_QUOTE(REALM_SYNC_VER_MAJOR) "." \
31     REALM_QUOTE(REALM_SYNC_VER_MINOR) "." REALM_QUOTE(REALM_SYNC_VER_PATCH)
32 #define REALM_SYNC_VER_CHUNK "[" REALM_SYNC_PRODUCT_NAME "-" REALM_SYNC_VER_STRING "]"
33
34 #endif // REALM_SYNC_VERSION_HPP