~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2011-03-24 23:14:46 UTC
  • mfrom: (2246.4.12 foreach)
  • Revision ID: brian@tangent.org-20110324231446-7q1gydkglys73nft
Merge in XTF

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
  {
362
357
  /**
363
358
   * Is this session viewable by the current user?
364
359
   */
365
 
  bool isViewable(identifier::User::const_reference) const;
 
360
  bool isViewable(const identifier::User&) const;
366
361
 
367
362
private:
368
363
  /**