From cb88ff9434d909545288c5e6a836eb7d595581d1 Mon Sep 17 00:00:00 2001 From: "keldu.magnus" Date: Thu, 11 Nov 2021 00:20:21 +0100 Subject: [PATCH] schema file --- source/kelgin/schema.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 source/kelgin/schema.h diff --git a/source/kelgin/schema.h b/source/kelgin/schema.h new file mode 100644 index 0000000..ef9ca76 --- /dev/null +++ b/source/kelgin/schema.h @@ -0,0 +1,19 @@ +#pragma once + +namespace gin { +namespace schema { +template +struct Struct { +}; + +template +struct Union { +}; + +template +struct Array { +}; + +struct String {}; +} +}