~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/vertex.h

  • Committer: Monty Taylor
  • Date: 2011-01-18 05:29:46 UTC
  • mto: (2114.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2115.
  • Revision ID: mordred@inaugust.com-20110118052946-j7a7v3qsump62duw
Use the catalog registry.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
    name_(""),
57
57
    module_(NULL)
58
58
  { }
 
59
  explicit Vertex(const std::string& name) :
 
60
    name_(name),
 
61
    module_(NULL)
 
62
  { }
59
63
  Vertex(const std::string& name, Module *module) :
60
64
    name_(name),
61
65
    module_(module)
74
78
  {
75
79
    return name_;
76
80
  }
77
 
  const Module* getModule() const
 
81
  void setModule(Module *module)
 
82
  {
 
83
    module_= module;
 
84
  }
 
85
  Module* getModule()
78
86
  {
79
87
    return module_;
80
88
  }