~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/catalog.h

  • Committer: Mark Atwood
  • Date: 2011-08-17 19:14:47 UTC
  • mfrom: (2385.3.17 rf)
  • Revision ID: me@mark.atwood.name-20110817191447-h86yzddvycd0xmof
mergeĀ lp:~olafvdspek/drizzle/refactor6

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
/* 
37
37
  This object handles the aggregate of all operations for any/all of the Catalog engines.
38
38
*/
39
 
class DRIZZLED_API Catalog : public Plugin {
40
 
  /* Disable default constructors */
41
 
  Catalog();
42
 
  Catalog(const Catalog &);
43
 
  Catalog& operator=(const Catalog &);
44
 
 
 
39
class DRIZZLED_API Catalog : public Plugin 
 
40
{
45
41
public:
46
42
  typedef std::vector<Catalog *> vector;
47
43
 
48
44
  explicit Catalog(std::string name_arg) :
49
45
    Plugin(name_arg, "Catalog")
50
46
  {}
51
 
  virtual ~Catalog();
52
47
 
53
48
  virtual catalog::Engine::shared_ptr engine()= 0;
54
49