mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
29 lines
565 B
C++
29 lines
565 B
C++
//
|
|
// Copyright (C) 2011-2013 Denis Chapligin
|
|
// Copyright (C) 2004-2006 Maciej Sobczak, Stephen Hutton
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
|
|
#define SOCI_DB2_SOURCE
|
|
#include "soci-db2.h"
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma warning(disable:4355)
|
|
#endif
|
|
|
|
using namespace soci;
|
|
using namespace soci::details;
|
|
|
|
|
|
db2_rowid_backend::db2_rowid_backend(db2_session_backend & /* session */)
|
|
{
|
|
// ...
|
|
}
|
|
|
|
db2_rowid_backend::~db2_rowid_backend()
|
|
{
|
|
// ...
|
|
}
|