From a15523c375d74704201b8df7c951add73bd607bb Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Sat, 31 Aug 2024 08:42:52 -0500 Subject: [PATCH] updated build system --- support/include/utils/types/file/i_directory.hpp | 10 +++++----- support/include/utils/types/file/i_file.hpp | 10 +++++----- support/include/utils/types/file/i_fs_item.hpp | 10 +++++----- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/support/include/utils/types/file/i_directory.hpp b/support/include/utils/types/file/i_directory.hpp index 8a9d6337..464e9667 100644 --- a/support/include/utils/types/file/i_directory.hpp +++ b/support/include/utils/types/file/i_directory.hpp @@ -19,15 +19,15 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#ifndef FIFTHGRID_INCLUDE_TYPES_FILE_I_DIRECTORY_HPP_ -#define FIFTHGRID_INCLUDE_TYPES_FILE_I_DIRECTORY_HPP_ +#ifndef REPERTORY_INCLUDE_TYPES_FILE_I_DIRECTORY_HPP_ +#define REPERTORY_INCLUDE_TYPES_FILE_I_DIRECTORY_HPP_ #include "utils/config.hpp" #include "utils/types/file/i_file.hpp" #include "utils/types/file/i_fs_item.hpp" -namespace fifthgrid::utils::file { +namespace repertory::utils::file { struct i_directory : public i_fs_item { using fs_directory_t = std::unique_ptr; using fs_file_t = i_file::fs_file_t; @@ -74,6 +74,6 @@ protected: auto operator=(const i_directory &) noexcept -> i_directory & = default; }; -} // namespace fifthgrid::utils::file +} // namespace repertory::utils::file -#endif // FIFTHGRID_INCLUDE_TYPES_FILE_I_DIRECTORY_HPP_ +#endif // REPERTORY_INCLUDE_TYPES_FILE_I_DIRECTORY_HPP_ diff --git a/support/include/utils/types/file/i_file.hpp b/support/include/utils/types/file/i_file.hpp index 17548006..f870d693 100644 --- a/support/include/utils/types/file/i_file.hpp +++ b/support/include/utils/types/file/i_file.hpp @@ -19,14 +19,14 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#ifndef FIFTHGRID_INCLUDE_TYPES_FILE_I_FILE_HPP_ -#define FIFTHGRID_INCLUDE_TYPES_FILE_I_FILE_HPP_ +#ifndef REPERTORY_INCLUDE_TYPES_FILE_I_FILE_HPP_ +#define REPERTORY_INCLUDE_TYPES_FILE_I_FILE_HPP_ #include "utils/config.hpp" #include "utils/types/file/i_fs_item.hpp" -namespace fifthgrid::utils::file { +namespace repertory::utils::file { struct i_file : public i_fs_item { using fs_file_t = std::unique_ptr; @@ -88,6 +88,6 @@ protected: auto operator=(const i_file &) noexcept -> i_file & = default; }; -} // namespace fifthgrid::utils::file +} // namespace repertory::utils::file -#endif // FIFTHGRID_INCLUDE_TYPES_FILE_I_FILE_HPP_ +#endif // REPERTORY_INCLUDE_TYPES_FILE_I_FILE_HPP_ diff --git a/support/include/utils/types/file/i_fs_item.hpp b/support/include/utils/types/file/i_fs_item.hpp index fd6878cf..db4e647c 100644 --- a/support/include/utils/types/file/i_fs_item.hpp +++ b/support/include/utils/types/file/i_fs_item.hpp @@ -19,14 +19,14 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#ifndef FIFTHGRID_INCLUDE_TYPES_FILE_I_FS_ITEM_HPP_ -#define FIFTHGRID_INCLUDE_TYPES_FILE_I_FS_ITEM_HPP_ +#ifndef REPERTORY_INCLUDE_TYPES_FILE_I_FS_ITEM_HPP_ +#define REPERTORY_INCLUDE_TYPES_FILE_I_FS_ITEM_HPP_ #include "utils/config.hpp" #include "utils/string.hpp" -namespace fifthgrid::utils::file { +namespace repertory::utils::file { enum class time_type { accessed, created, @@ -106,6 +106,6 @@ protected: auto operator=(const i_fs_item &) noexcept -> i_fs_item & = default; }; -} // namespace fifthgrid::utils::file +} // namespace repertory::utils::file -#endif // FIFTHGRID_INCLUDE_TYPES_FILE_I_FS_ITEM_HPP_ +#endif // REPERTORY_INCLUDE_TYPES_FILE_I_FS_ITEM_HPP_