~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/query_cache.cc

  • Committer: Monty Taylor
  • Date: 2010-05-15 18:23:34 UTC
  • mto: (1530.6.1)
  • mto: This revision was merged to the branch mainline in revision 1556.
  • Revision ID: mordred@inaugust.com-20100515182334-bgbmwij0mioklajx
Renamed classes that were in drizzled::plugin but which were not meant
for consumption by plugin authors to drizzled::module - since they
really have to do with plugin module loading. This way when we
look in drizzled/plugin, we see nothing but plugin interfaces. Win.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
#include "config.h"
21
21
#include "drizzled/plugin/query_cache.h"
22
 
#include "drizzled/plugin/registry.h"
 
22
#include "drizzled/errmsg_print.h"
23
23
 
24
24
#include "drizzled/gettext.h"
25
25
 
 
26
#include <algorithm>
26
27
#include <vector>
27
28
 
28
29
class Session;