File indexing completed on 2025-02-23 05:15:21

0001 //
0002 // Copyright (C) 2004-2006 Maciej Sobczak, Stephen Hutton, David Courtney
0003 // Distributed under the Boost Software License, Version 1.0.
0004 // (See accompanying file LICENSE_1_0.txt or copy at
0005 // http://www.boost.org/LICENSE_1_0.txt)
0006 //
0007 
0008 #define SOCI_SQLITE3_SOURCE
0009 #include "soci/sqlite3/soci-sqlite3.h"
0010 
0011 #ifdef _MSC_VER
0012 #pragma warning(disable:4355)
0013 #endif
0014 
0015 using namespace soci;
0016 using namespace soci::details;
0017 
0018 sqlite3_rowid_backend::sqlite3_rowid_backend(
0019     sqlite3_session_backend & /* session */)
0020     : value_(0)
0021 {
0022 }
0023 
0024 sqlite3_rowid_backend::~sqlite3_rowid_backend()
0025 {
0026     // ...
0027 }