mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-06-01 01:54:00 +00:00
12 lines
295 B
C++
12 lines
295 B
C++
/**
|
|
* @file services/sqlite/finalize_statements.cc
|
|
* @brief SqliteExportService::FinalizeStatements() implementation.
|
|
*/
|
|
|
|
#include "services/sqlite_export_service.h"
|
|
|
|
void SqliteExportService::FinalizeStatements() noexcept {
|
|
insert_brewery_stmt_.reset();
|
|
insert_location_stmt_.reset();
|
|
}
|