~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Olaf van der Spek
  • Date: 2011-03-24 00:16:14 UTC
  • mto: This revision was merged to the branch mainline in revision 2251.
  • Revision ID: olafvdspek@gmail.com-20110324001614-wvmgc6eg52oq2321
Remove const_reference and reference from Session

Show diffs side-by-side

added added

removed removed

Lines of Context:
146
146
 
147
147
  boost::scoped_ptr<impl_c> impl_;
148
148
public:
149
 
  // Plugin storage in Session.
150
149
  typedef boost::shared_ptr<Session> shared_ptr;
151
 
  typedef Session& reference;
152
 
  typedef const Session& const_reference;
153
 
  typedef const Session* const_pointer;
154
 
  typedef Session* pointer;
155
150
 
156
151
  static shared_ptr make_shared(plugin::Client *client, boost::shared_ptr<catalog::Instance> instance_arg)
157
152
  {