Warning, file /sdk/codevis/thirdparty/soci/src/core/rowid.cpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 //
0002 // Copyright (C) 2004-2008 Maciej Sobczak, Stephen Hutton
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_SOURCE
0009 #include "soci/rowid.h"
0010 #include "soci/session.h"
0011 
0012 using namespace soci;
0013 using namespace soci::details;
0014 
0015 rowid::rowid(session & s)
0016 {
0017     backEnd_ = s.make_rowid_backend();
0018 }
0019 
0020 rowid::~rowid()
0021 {
0022     delete backEnd_;
0023 }