From 2f157419077849af96614c490488d750079a0f87 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 (synced from c8ff73b56ed9ba5108faf9a18d58c354c697bc93) --- src/ox/fs/CMakeLists.txt | 1 + src/ox/fs/filesystem2/filesystem.cpp | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 src/ox/fs/filesystem2/filesystem.cpp diff --git a/src/ox/fs/CMakeLists.txt b/src/ox/fs/CMakeLists.txt index ec1065b7f..3bd528257 100644 --- a/src/ox/fs/CMakeLists.txt +++ b/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/src/ox/fs/filesystem2/filesystem.cpp b/src/ox/fs/filesystem2/filesystem.cpp new file mode 100644 index 000000000..a4d7fb327 --- /dev/null +++ b/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; + +}