[ox/fs] Add template instantiations for FileSystemTemplate

This commit is contained in:
Gary Talent 2018-07-30 21:33:28 -05:00
parent 61f77767bf
commit c8ff73b56e
2 changed files with 20 additions and 0 deletions

View File

@ -7,6 +7,7 @@ add_library(
filesystem/filesystem.cpp
filesystem/pathiterator.cpp
filesystem2/directory.cpp
filesystem2/filesystem.cpp
)
set_property(

View File

@ -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<uint16_t>;
template class Directory<uint32_t>;
template class FileSystemTemplate<uint16_t>;
template class FileSystemTemplate<uint32_t>;
}