Zserio C++ runtime library  1.0.2
Built for Zserio 2.14.1
SqliteFinalizer.h
Go to the documentation of this file.
1 #ifndef ZSERIO_SQLITE_FINALIZER_H_INC
2 #define ZSERIO_SQLITE_FINALIZER_H_INC
3 
4 #include "sqlite3.h"
5 
6 namespace zserio
7 {
8 
13 {
19  void operator()(sqlite3_stmt* ptr) const
20  {
21  sqlite3_finalize(ptr);
22  }
23 };
24 
25 } // namespace zserio
26 
27 #endif // ZSERIO_SQLITE_FINALIZER_H_INC
void operator()(sqlite3_stmt *ptr) const