schema file

This commit is contained in:
keldu.magnus 2021-11-11 00:20:21 +01:00
parent 34675ab854
commit cb88ff9434
1 changed files with 19 additions and 0 deletions

19
source/kelgin/schema.h Normal file
View File

@ -0,0 +1,19 @@
#pragma once
namespace gin {
namespace schema {
template<typename... T>
struct Struct {
};
template<typename... T>
struct Union {
};
template<typename... T>
struct Array {
};
struct String {};
}
}