~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/catalog/engine.h

  • Committer: Olaf van der Spek
  • Date: 2011-03-23 23:34:24 UTC
  • mto: This revision was merged to the branch mainline in revision 2251.
  • Revision ID: olafvdspek@gmail.com-20110323233424-1fv5e1i53ey8ercc
Remove const_reference and reference from identifier::Catalog

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
  { };
49
49
 
50
50
  // DDL
51
 
  virtual bool create(identifier::Catalog::const_reference , message::catalog::shared_ptr &)= 0;
52
 
  virtual bool drop(identifier::Catalog::const_reference)= 0;
 
51
  virtual bool create(const identifier::Catalog& , message::catalog::shared_ptr &)= 0;
 
52
  virtual bool drop(const identifier::Catalog&)= 0;
53
53
 
54
54
  // Get Meta information
55
 
  virtual bool exist(identifier::Catalog::const_reference identifier)= 0;
 
55
  virtual bool exist(const identifier::Catalog& identifier)= 0;
56
56
  virtual void getIdentifiers(identifier::Catalog::vector &identifiers)= 0;
57
 
  virtual message::catalog::shared_ptr getMessage(identifier::Catalog::const_reference)= 0;
 
57
  virtual message::catalog::shared_ptr getMessage(const identifier::Catalog&)= 0;
58
58
  virtual void getMessages(message::catalog::vector &messages)= 0;
59
59
};
60
60