#include "KM3NeTDBClient.h" #include "KM3NeTDB_Client.h" using namespace KM3NeT; using namespace KM3NeT::DB; std::shared_ptr Client::Create(const Server &srv, const char *usr, const char *pwd) { return std::shared_ptr(new _Client(srv, usr, pwd)); } std::shared_ptr Client::Create(const Server &srv, const char *persistentcookie) { return std::shared_ptr(new _Client(srv, persistentcookie)); } std::shared_ptr Client::Create() { return std::shared_ptr(new _Client()); }