~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/module/module.h

  • Committer: Monty Taylor
  • Date: 2011-01-18 20:50:12 UTC
  • mto: (2114.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2115.
  • Revision ID: mordred@inaugust.com-20110118205012-34bt3viv2rvefsx4
Actually properly process module dependencies. w00t.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
private:
58
58
  const std::string name;
59
59
  const Manifest *manifest;
 
60
  VertexDesc vertex_;
60
61
 
61
62
public:
62
63
  Library *plugin_dl;
101
102
    return depends_;
102
103
  }
103
104
 
 
105
  void setVertexDesc(VertexDesc vertex)
 
106
  {
 
107
    vertex_= vertex;
 
108
  }
 
109
 
 
110
  VertexDesc getVertexDesc()
 
111
  {
 
112
    return vertex_;
 
113
  }
104
114
};
105
115
 
106
116
} /* namespace module */