// file : odb/mysql/query.txx // author : Boris Kolpackov // copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file namespace odb { namespace mysql { template query& query:: operator+= (val_bind v) { add ( shared_ptr ( new (shared) query_param_impl::image_id> (v))); } template query& query:: operator+= (ref_bind r) { add ( shared_ptr ( new (shared) query_param_impl::image_id> (r))); } } }