1 /*************************************************************************
6 * [2011] - [2013] Realm Inc
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.
19 **************************************************************************/
20 #ifndef REALM_SYNC_VERSION_HPP
21 #define REALM_SYNC_VERSION_HPP
23 #include <realm/util/features.h>
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"
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 "]"
34 #endif // REALM_SYNC_VERSION_HPP