diff --git a/src/pEpSQLite.hh b/src/pEpSQLite.hh index 11a2adc..f96bd66 100644 --- a/src/pEpSQLite.hh +++ b/src/pEpSQLite.hh @@ -16,10 +16,15 @@ using RSRecord = std::map; namespace pEp { class pEpSQLite { public: - pEpSQLite() = delete; - // The database file as a constant for the obj lifetime explicit pEpSQLite(const std::string& db_path); + + pEpSQLite() = delete; + pEpSQLite(const pEpSQLite&) = delete; + pEpSQLite(const pEpSQLite&&) = delete; + pEpSQLite& operator=(const pEpSQLite&) = delete; + pEpSQLite& operator=(const pEpSQLite&&) = delete; + std::string get_db_path() const; // Creates the database file not existsing