~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/identifier/session.h

  • Committer: Lee Bieber
  • Date: 2011-03-23 23:16:25 UTC
  • mfrom: (2247.1.2 build)
  • Revision ID: kalebral@gmail.com-20110323231625-61k77qbh7n1iu776
Merge Olaf - Use BOOST_FOREACH
Merge Olaf - Remove std::nothrow from new()

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
#pragma once
22
22
 
23
 
namespace drizzled
24
 
{
 
23
namespace drizzled {
25
24
 
26
25
typedef int64_t session_id_t;
27
26
 
28
 
namespace identifier
29
 
{
30
 
 
31
 
class Session 
32
 
{
33
 
  session_id_t _id;
34
 
public:
35
 
 
36
 
  Session() :
37
 
    _id(0)
38
 
  {
39
 
  }
40
 
 
41
 
  ~Session()
42
 
  {
43
 
  }
44
 
};
45
 
 
46
 
} /* namespace identifier */
47
27
} /* namespace drizzled */