~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/user_var_entry.h

pandora-build v0.71. Added check for avahi.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_USER_VAR_ENTRY_H
22
22
#define DRIZZLED_USER_VAR_ENTRY_H
23
23
 
24
 
#include "drizzled/query_id.h"
25
 
 
26
 
namespace drizzled
27
 
{
28
24
 
29
25
// this is needed for user_vars hash
30
26
class user_var_entry
42
38
  { 
43
39
    name.str= strdup(arg);
44
40
    name.length= strlen(arg);
45
 
  }
 
41
  };
46
42
 
47
43
  ~user_var_entry()
48
44
  {
72
68
                   bool unsigned_arg);
73
69
};
74
70
 
75
 
} /* namespace drizzled */
76
 
 
77
71
#endif /* DRIZZLED_USER_VAR_ENTRY_H */