moving code into aare:: namespace

This commit is contained in:
Erik Frojdh
2024-04-02 12:26:51 +02:00
parent 449c5119a4
commit 0a6030aa3e
35 changed files with 122 additions and 17 deletions

View File

@@ -2,6 +2,8 @@
#include "aare/FileFactory.hpp"
#include "aare/utils/logger.hpp"
namespace aare {
File::File(std::filesystem::path fname, std::string mode, FileConfig cfg) {
file_impl = FileFactory::load_file(fname, mode, cfg);
}
@@ -30,3 +32,5 @@ File::File(File &&other) {
}
// write move assignment operator
}