Update folders

This commit is contained in:
AJ
2024-07-06 12:03:41 +02:00
parent b683d39a68
commit 5885f01dc0
22 changed files with 4394 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#ifndef DBHANDLER_HPP_
#define DBHANDLER_HPP_
#include <pqxx/pqxx>
#include <string>
class DBHandler {
protected:
pqxx::connection connectionObject;
public:
DBHandler(std::string connStr);
};
#endif