~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/current_session.h

  • Committer: Brian Aker
  • Date: 2010-04-05 23:46:43 UTC
  • Revision ID: brian@gaz-20100405234643-0he3xnj902rc70r8
Fixing tests to work with PBXT.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_CURRENT_SESSION_H
22
22
#define DRIZZLED_CURRENT_SESSION_H
23
23
 
 
24
namespace drizzled
 
25
{
 
26
 
24
27
class Session;
25
28
 
 
29
namespace memory { class Root; }
 
30
 
26
31
Session *_current_session(void);
27
 
#define current_session _current_session()
28
 
MEM_ROOT *current_mem_root(void);
29
 
MEM_ROOT **current_mem_root_ptr(void);
 
32
#define current_session ::drizzled::_current_session()
 
33
memory::Root *current_mem_root(void);
 
34
 
 
35
} /* namespace drizzled */
30
36
 
31
37
#endif /* DRIZZLED_CURRENT_SESSION_H */