refactor(furvm): introduce a furvm.hpp header

Refs: #12
This commit is contained in:
2026-06-20 11:32:01 +02:00
parent 99666495e7
commit f80abd68ad
2 changed files with 13 additions and 7 deletions
+12
View File
@@ -0,0 +1,12 @@
#ifndef FURVM_HPP
#define FURVM_HPP
#include "furvm/context.hpp" // IWYU pragma: export
#include "furvm/executor.hpp" // IWYU pragma: export
#include "furvm/function.hpp" // IWYU pragma: export
#include "furvm/fwd.hpp" // IWYU pragma: export
#include "furvm/handle.hpp" // IWYU pragma: export
#include "furvm/instruction.hpp" // IWYU pragma: export
#include "furvm/thing.hpp" // IWYU pragma: export
#endif // FURVM_HPP
+1 -7
View File
@@ -1,12 +1,6 @@
#ifndef LIBFURVM #ifndef LIBFURVM
#include "furvm/context.hpp" #include "furvm/furvm.hpp"
#include "furvm/executor.hpp"
#include "furvm/function.hpp"
#include "furvm/fwd.hpp"
#include "furvm/instruction.hpp"
#include "furvm/module.hpp"
#include "furvm/thing.hpp"
#include <array> #include <array>
#include <cstddef> #include <cstddef>