diff options
author | Hop311 <Hop3114@gmail.com> | 2023-07-20 22:33:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-20 22:33:38 +0200 |
commit | 420c2dce47e74c01ff46be991058d543e0c70a6b (patch) | |
tree | 2fced5640d983144fab9fa982f598203d84887b6 /src/openvic | |
parent | 9efd6de04c528587ffe1a05c7ecc9770c4d93f62 (diff) | |
parent | 741cfe452156f7c6365d1a66b6228e15ef660bf6 (diff) |
Merge pull request #7 from OpenVicProject/dataloading-skeleton
Dataloading Skeleton
Diffstat (limited to 'src/openvic')
-rw-r--r-- | src/openvic/Simulation.hpp | 5 | ||||
-rw-r--r-- | src/openvic/dataloader/Dataloader.hpp | 16 |
2 files changed, 21 insertions, 0 deletions
diff --git a/src/openvic/Simulation.hpp b/src/openvic/Simulation.hpp new file mode 100644 index 0000000..b0c2a19 --- /dev/null +++ b/src/openvic/Simulation.hpp @@ -0,0 +1,5 @@ +#pragma once + +namespace OpenVic { + class Simulation {}; +}
\ No newline at end of file diff --git a/src/openvic/dataloader/Dataloader.hpp b/src/openvic/dataloader/Dataloader.hpp new file mode 100644 index 0000000..062f3d5 --- /dev/null +++ b/src/openvic/dataloader/Dataloader.hpp @@ -0,0 +1,16 @@ +#pragma once +#include <filesystem> +#include "../Simulation.hpp" + +namespace OpenVic { + class Dataloader { + public: + enum class LoadingMode { + DL_COMPATIBILITY + }; + + static bool loadDir(std::filesystem::path p, Simulation& sim, LoadingMode loadMode = LoadingMode::DL_COMPATIBILITY) { + return true; + } + }; +}
\ No newline at end of file |