From 7462ba470eacfac717e19b1a8de91e605bad4992 Mon Sep 17 00:00:00 2001 From: "Dr. Patrick Urbanke" Date: Sat, 22 Mar 2025 04:39:42 +0100 Subject: [PATCH] Moved everything into folder sqlgen; added sqlgen.hpp --- include/sqlgen.hpp | 9 +++++++++ include/{ => sqlgen}/Connection.hpp | 0 include/{ => sqlgen}/Iterator.hpp | 0 include/{ => sqlgen}/Ref.hpp | 0 include/{ => sqlgen}/Result.hpp | 0 include/{ => sqlgen}/dynamic/Column.hpp | 0 include/{ => sqlgen}/dynamic/CreateTable.hpp | 0 include/{ => sqlgen}/dynamic/Insert.hpp | 0 include/{ => sqlgen}/dynamic/SelectFrom.hpp | 0 include/{ => sqlgen}/dynamic/Table.hpp | 0 include/{ => sqlgen}/dynamic/Type.hpp | 0 include/{ => sqlgen}/dynamic/create_table.hpp | 0 include/{ => sqlgen}/dynamic/select.hpp | 0 include/{ => sqlgen}/dynamic/types.hpp | 0 include/{ => sqlgen}/parsing/has_reflection_method.hpp | 0 include/{ => sqlgen}/parsing/is_nullable.hpp | 0 16 files changed, 9 insertions(+) create mode 100644 include/sqlgen.hpp rename include/{ => sqlgen}/Connection.hpp (100%) rename include/{ => sqlgen}/Iterator.hpp (100%) rename include/{ => sqlgen}/Ref.hpp (100%) rename include/{ => sqlgen}/Result.hpp (100%) rename include/{ => sqlgen}/dynamic/Column.hpp (100%) rename include/{ => sqlgen}/dynamic/CreateTable.hpp (100%) rename include/{ => sqlgen}/dynamic/Insert.hpp (100%) rename include/{ => sqlgen}/dynamic/SelectFrom.hpp (100%) rename include/{ => sqlgen}/dynamic/Table.hpp (100%) rename include/{ => sqlgen}/dynamic/Type.hpp (100%) rename include/{ => sqlgen}/dynamic/create_table.hpp (100%) rename include/{ => sqlgen}/dynamic/select.hpp (100%) rename include/{ => sqlgen}/dynamic/types.hpp (100%) rename include/{ => sqlgen}/parsing/has_reflection_method.hpp (100%) rename include/{ => sqlgen}/parsing/is_nullable.hpp (100%) diff --git a/include/sqlgen.hpp b/include/sqlgen.hpp new file mode 100644 index 0000000..7df7b23 --- /dev/null +++ b/include/sqlgen.hpp @@ -0,0 +1,9 @@ +#ifndef SQLGEN_HPP_ +#define SQLGEN_HPP_ + +#include "sqlgen/Connection.hpp" +#include "sqlgen/Iterator.hpp" +#include "sqlgen/Ref.hpp" +#include "sqlgen/Result.hpp" + +#endif diff --git a/include/Connection.hpp b/include/sqlgen/Connection.hpp similarity index 100% rename from include/Connection.hpp rename to include/sqlgen/Connection.hpp diff --git a/include/Iterator.hpp b/include/sqlgen/Iterator.hpp similarity index 100% rename from include/Iterator.hpp rename to include/sqlgen/Iterator.hpp diff --git a/include/Ref.hpp b/include/sqlgen/Ref.hpp similarity index 100% rename from include/Ref.hpp rename to include/sqlgen/Ref.hpp diff --git a/include/Result.hpp b/include/sqlgen/Result.hpp similarity index 100% rename from include/Result.hpp rename to include/sqlgen/Result.hpp diff --git a/include/dynamic/Column.hpp b/include/sqlgen/dynamic/Column.hpp similarity index 100% rename from include/dynamic/Column.hpp rename to include/sqlgen/dynamic/Column.hpp diff --git a/include/dynamic/CreateTable.hpp b/include/sqlgen/dynamic/CreateTable.hpp similarity index 100% rename from include/dynamic/CreateTable.hpp rename to include/sqlgen/dynamic/CreateTable.hpp diff --git a/include/dynamic/Insert.hpp b/include/sqlgen/dynamic/Insert.hpp similarity index 100% rename from include/dynamic/Insert.hpp rename to include/sqlgen/dynamic/Insert.hpp diff --git a/include/dynamic/SelectFrom.hpp b/include/sqlgen/dynamic/SelectFrom.hpp similarity index 100% rename from include/dynamic/SelectFrom.hpp rename to include/sqlgen/dynamic/SelectFrom.hpp diff --git a/include/dynamic/Table.hpp b/include/sqlgen/dynamic/Table.hpp similarity index 100% rename from include/dynamic/Table.hpp rename to include/sqlgen/dynamic/Table.hpp diff --git a/include/dynamic/Type.hpp b/include/sqlgen/dynamic/Type.hpp similarity index 100% rename from include/dynamic/Type.hpp rename to include/sqlgen/dynamic/Type.hpp diff --git a/include/dynamic/create_table.hpp b/include/sqlgen/dynamic/create_table.hpp similarity index 100% rename from include/dynamic/create_table.hpp rename to include/sqlgen/dynamic/create_table.hpp diff --git a/include/dynamic/select.hpp b/include/sqlgen/dynamic/select.hpp similarity index 100% rename from include/dynamic/select.hpp rename to include/sqlgen/dynamic/select.hpp diff --git a/include/dynamic/types.hpp b/include/sqlgen/dynamic/types.hpp similarity index 100% rename from include/dynamic/types.hpp rename to include/sqlgen/dynamic/types.hpp diff --git a/include/parsing/has_reflection_method.hpp b/include/sqlgen/parsing/has_reflection_method.hpp similarity index 100% rename from include/parsing/has_reflection_method.hpp rename to include/sqlgen/parsing/has_reflection_method.hpp diff --git a/include/parsing/is_nullable.hpp b/include/sqlgen/parsing/is_nullable.hpp similarity index 100% rename from include/parsing/is_nullable.hpp rename to include/sqlgen/parsing/is_nullable.hpp