~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/registry_dictionary/modules.cc

  • Committer: Brian Aker
  • Date: 2010-12-27 20:04:50 UTC
  • mto: (2060.2.1 clean)
  • mto: This revision was merged to the branch mainline in revision 2063.
  • Revision ID: brian@tangent.org-20101227200450-dmxpemwyfmlinlnm
Merge in first pass.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#include <config.h>
 
21
#include "config.h"
22
22
 
23
 
#include <plugin/registry_dictionary/dictionary.h>
24
 
#include <drizzled/module/library.h>
 
23
#include "plugin/registry_dictionary/dictionary.h"
 
24
#include "drizzled/module/library.h"
25
25
 
26
26
using namespace std;
27
27
using namespace drizzled;
51
51
  plugin::TableFunction::Generator(arg)
52
52
{
53
53
  module::Registry &registry= module::Registry::singleton();
54
 
  modules= registry.getList();
 
54
  modules= registry.getList(true);
55
55
  it= modules.begin();
56
56
}
57
57