// file : odb/pgsql/query.ixx // copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file namespace odb { namespace pgsql { template inline void query:: append (val_bind v, const char* conv) { add ( details::shared_ptr ( new (details::shared) query_param_impl (v)), conv); } template inline void query:: append (ref_bind r, const char* conv) { add ( details::shared_ptr ( new (details::shared) query_param_impl (r)), conv); } } }