~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/query_id.h

  • Committer: Olaf van der Spek
  • Date: 2011-07-05 13:16:34 UTC
  • mto: This revision was merged to the branch mainline in revision 2384.
  • Revision ID: olafvdspek@gmail.com-20110705131634-f7g1fjro5slibmdj
Add data_ref.h
Use str_ref for append_identifier

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#ifndef DRIZZLED_QUERY_ID_H
21
 
#define DRIZZLED_QUERY_ID_H
 
20
#pragma once
22
21
 
23
22
#include <drizzled/atomics.h>
24
23
 
25
 
namespace drizzled
26
 
{
 
24
namespace drizzled {
27
25
 
28
26
typedef uint64_t query_id_t;
29
27
 
30
28
class Query_id
31
29
{
32
30
public:
33
 
  static Query_id& get_query_id() {
 
31
  static Query_id& get_query_id() 
 
32
  {
34
33
    static Query_id the_id;
35
34
    return the_id;
36
35
  }
37
 
  ~Query_id();
38
36
 
39
37
  /* return current query_id value */
40
38
  query_id_t value() const;
52
50
 
53
51
} /* namespace drizzled */
54
52
 
55
 
#endif /* DRIZZLED_QUERY_ID_H */