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