Browse Source

pEpSQLite: TODO non-copyable

pull/15/head
heck 3 years ago
parent
commit
239f2de011
  1. 9
      src/pEpSQLite.hh

9
src/pEpSQLite.hh

@ -20,10 +20,11 @@ namespace pEp {
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;
// TODO:
// pEpSQLite(const pEpSQLite&) = delete;
// pEpSQLite(const pEpSQLite&&) = delete;
// pEpSQLite& operator=(const pEpSQLite&) = delete;
// pEpSQLite& operator=(const pEpSQLite&&) = delete;
std::string get_db_path() const;

Loading…
Cancel
Save