summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWasm/AbstractMachine/Interpreter.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWasm/AbstractMachine/Interpreter.h')
-rw-r--r--Userland/Libraries/LibWasm/AbstractMachine/Interpreter.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWasm/AbstractMachine/Interpreter.h b/Userland/Libraries/LibWasm/AbstractMachine/Interpreter.h
new file mode 100644
index 0000000000..2c3426fc84
--- /dev/null
+++ b/Userland/Libraries/LibWasm/AbstractMachine/Interpreter.h
@@ -0,0 +1,17 @@
+/*
+ * Copyright (c) 2021, Ali Mohammad Pur <mpfard@serenityos.org>
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+
+#pragma once
+
+#include <LibWasm/AbstractMachine/Configuration.h>
+
+namespace Wasm {
+
+struct Interpreter {
+ void interpret(Configuration&);
+};
+
+}