updated build system
Some checks reported errors
BlockStorage/repertory/pipeline/head Something is wrong with the build of this commit
Some checks reported errors
BlockStorage/repertory/pipeline/head Something is wrong with the build of this commit
This commit is contained in:
@ -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<i_directory>;
|
||||
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_
|
||||
|
@ -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<i_file>;
|
||||
|
||||
@ -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_
|
||||
|
@ -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_
|
||||
|
Reference in New Issue
Block a user