From c8ff73b56ed9ba5108faf9a18d58c354c697bc93 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Mon, 30 Jul 2018 21:33:28 -0500 Subject: [PATCH] [ox/fs] Add template instantiations for FileSystemTemplate --- deps/ox/src/ox/fs/CMakeLists.txt | 1 + deps/ox/src/ox/fs/filesystem2/filesystem.cpp | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 deps/ox/src/ox/fs/filesystem2/filesystem.cpp diff --git a/deps/ox/src/ox/fs/CMakeLists.txt b/deps/ox/src/ox/fs/CMakeLists.txt index ec1065b7..3bd52825 100644 --- a/deps/ox/src/ox/fs/CMakeLists.txt +++ b/deps/ox/src/ox/fs/CMakeLists.txt @@ -7,6 +7,7 @@ add_library( filesystem/filesystem.cpp filesystem/pathiterator.cpp filesystem2/directory.cpp + filesystem2/filesystem.cpp ) set_property( diff --git a/deps/ox/src/ox/fs/filesystem2/filesystem.cpp b/deps/ox/src/ox/fs/filesystem2/filesystem.cpp new file mode 100644 index 00000000..a4d7fb32 --- /dev/null +++ b/deps/ox/src/ox/fs/filesystem2/filesystem.cpp @@ -0,0 +1,19 @@ +/* + * Copyright 2015 - 2018 gtalent2@gmail.com + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#include "filesystem.hpp" + +namespace ox::fs { + +template class Directory; +template class Directory; + +template class FileSystemTemplate; +template class FileSystemTemplate; + +}