Files
EinsatzplanQT/DBHandler/DBHandler.hpp
2024-06-30 20:30:54 +02:00

14 lines
216 B
C++

#ifndef DBHANDLER_HPP_
#define DBHANDLER_HPP_
#include <pqxx/pqxx>
#include <string>
class DBHandler {
protected:
pqxx::connection connectionObject;
public:
DBHandler(std::string connStr);
};
#endif