~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/identifier/catalog.h

updating

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
 
38
38
namespace drizzled {
39
39
 
 
40
class lex_string_t;
 
41
 
40
42
namespace identifier {
41
43
 
42
44
class Catalog : public Identifier
44
46
  std::string _name;
45
47
  std::string path;
46
48
 
 
49
  void init();
47
50
 
48
51
public:
49
52
  typedef std::vector<Catalog> vector;
51
54
  typedef Catalog& reference;
52
55
 
53
56
  Catalog(const std::string &name_arg);
 
57
  Catalog(const drizzled::lex_string_t &name_arg);
54
58
 
55
59
  virtual ~Catalog()
56
60
  { }