diff --git a/include/Core/Database.hpp b/include/Core/Database.hpp new file mode 100644 index 000000000..8583e93f6 --- /dev/null +++ b/include/Core/Database.hpp @@ -0,0 +1,21 @@ +#pragma once + +#include + +#include "bsoncxx/builder/basic/document.hpp" +#include +#include +#include +#include +#include +#include + + +class Database +{ + + Database(); + ~Database(); + + +}; \ No newline at end of file diff --git a/project/FLHook.vcxproj b/project/FLHook.vcxproj index 270064dd3..e295d511f 100644 --- a/project/FLHook.vcxproj +++ b/project/FLHook.vcxproj @@ -143,6 +143,7 @@ + diff --git a/project/FLHook.vcxproj.filters b/project/FLHook.vcxproj.filters index 0f764b727..98d868467 100644 --- a/project/FLHook.vcxproj.filters +++ b/project/FLHook.vcxproj.filters @@ -516,5 +516,8 @@ Include\API\FLHook + + Include\Core + \ No newline at end of file diff --git a/vcpkg.json b/vcpkg.json index 5f8a800b3..6039c75b4 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -39,6 +39,10 @@ { "name": "sqlite-orm", "version>=": "1.8.1" + }, + { + "name" : "mongo-cxx-driver", + "version>=" : "3.9.0" } ] } \ No newline at end of file