Remove unneeded Backup::getHandle() accessor

This commit is contained in:
Sébastien Rombauts 2015-10-28 22:11:47 +01:00
parent d51633836a
commit 544ecf4101

View File

@ -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&);