summaryrefslogtreecommitdiffstats
path: root/src/djinterop/enginelibrary/schema_1_6_0.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/djinterop/enginelibrary/schema_1_6_0.hpp')
-rw-r--r--src/djinterop/enginelibrary/schema_1_6_0.hpp42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/djinterop/enginelibrary/schema_1_6_0.hpp b/src/djinterop/enginelibrary/schema_1_6_0.hpp
new file mode 100644
index 0000000..7d6487a
--- /dev/null
+++ b/src/djinterop/enginelibrary/schema_1_6_0.hpp
@@ -0,0 +1,42 @@
+/*
+ This file is part of libdjinterop.
+
+ libdjinterop is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ libdjinterop is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public License
+ along with libdjinterop. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#if __cplusplus < 201402L && _MSVC_LANG < 201402L
+#error This library needs at least a C++14 compliant compiler
+#endif
+
+#ifndef DJINTEROP_ENGINELIBRARY_SCHEMA_1_6_0_HPP
+#define DJINTEROP_ENGINELIBRARY_SCHEMA_1_6_0_HPP
+
+#include <sqlite_modern_cpp.h>
+
+namespace djinterop
+{
+namespace enginelibrary
+{
+void verify_music_schema_1_6_0(sqlite::database &db);
+
+void verify_performance_schema_1_6_0(sqlite::database &db);
+
+void create_music_schema_1_6_0(sqlite::database &db);
+
+void create_performance_schema_1_6_0(sqlite::database &db);
+
+} // namespace enginelibrary
+} // namespace djinterop
+
+#endif // DJINTEROP_ENGINELIBRARY_SCHEMA_1_6_0_HPP