From 22c226af3f5570514d3d13d82a399577ecd7d280 Mon Sep 17 00:00:00 2001 From: Konstantin Varlamov Date: Tue, 27 Mar 2018 11:50:03 -0400 Subject: C++ migration: make Timestamp class a part of public API (#944) * move Timestamp from model/ to the root directory; * move Timestamp to top-level firebase namespace and update all references; * add conversions to and from native date types; * add a specialization of std::hash; * add comments to public member functions; * rename nanos -> nanoseconds; * add public headers, including Timestamp, to CMake; * increase test coverage. --- Firestore/core/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Firestore/core/CMakeLists.txt') diff --git a/Firestore/core/CMakeLists.txt b/Firestore/core/CMakeLists.txt index 43188e9..1a0c936 100644 --- a/Firestore/core/CMakeLists.txt +++ b/Firestore/core/CMakeLists.txt @@ -12,6 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +add_subdirectory(include/firebase/firestore) + add_subdirectory(src/firebase/firestore) add_subdirectory(src/firebase/firestore/auth) add_subdirectory(src/firebase/firestore/core) -- cgit v1.2.3