~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/identifier/user.h

  • Committer: Brian Aker
  • Date: 2011-01-04 22:27:38 UTC
  • mfrom: (2041.3.16 session-fix)
  • mto: This revision was merged to the branch mainline in revision 2055.
  • Revision ID: brian@tangent.org-20110104222738-4r3hrsxrlbuildrg
Merge in cleanup of error messages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
  @brief A set of Session members describing the current authenticated user.
36
36
*/
37
37
 
38
 
class User {
 
38
class User : public Identifier
 
39
{
39
40
public:
40
41
  typedef boost::shared_ptr<User> shared_ptr;
41
42
  typedef boost::shared_ptr<const User> const_shared_ptr;
54
55
    _address("")
55
56
  { }
56
57
 
 
58
  virtual void getSQLPath(std::string &arg) const;
 
59
 
57
60
  const std::string& address() const
58
61
  {
59
62
    return _address;