diff --git a/include/SQLiteCpp/Backup.h b/include/SQLiteCpp/Backup.h index 660ce80..48bb389 100644 --- a/include/SQLiteCpp/Backup.h +++ b/include/SQLiteCpp/Backup.h @@ -131,18 +131,6 @@ public: */ int totalPageCount(); - /** - * @brief Return raw pointer to SQLite Database Backup Handle. - * - * This is often needed to mix this wrapper with other libraries or for advance usage not supported by SQLiteCpp. - * - * @return Raw pointer to SQLite Backup Handle - */ - inline sqlite3_backup* getHandle() const noexcept // nothrow - { - return mpSQLiteBackup; - } - private: /// @{ Backup must be non-copyable Backup(const Backup&);