From 544ecf4101287b8179f0ca63bba26b73a1712bb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Rombauts?= Date: Wed, 28 Oct 2015 22:11:47 +0100 Subject: [PATCH] Remove unneeded Backup::getHandle() accessor --- include/SQLiteCpp/Backup.h | 12 ------------ 1 file changed, 12 deletions(-) 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&);