~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/plugin.h

  • Committer: pcrews
  • Date: 2011-05-24 17:36:24 UTC
  • mfrom: (1099.4.232 drizzle)
  • Revision ID: pcrews@lucid32-20110524173624-mwr1bvq6fa1r01ao
Updated translations + 2011.05.18 tarball tag

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
 
21
21
 
22
 
#ifndef DRIZZLED_PLUGIN_PLUGIN_H
23
 
#define DRIZZLED_PLUGIN_PLUGIN_H
 
22
#pragma once
24
23
 
25
24
#include <string>
26
25
#include <vector>
27
26
#include <map>
28
27
 
29
 
#include "drizzled/visibility.h"
30
 
 
31
 
namespace drizzled
32
 
{
33
 
 
34
 
class Session;
35
 
 
36
 
namespace module
37
 
{
38
 
class Module;
39
 
}
40
 
 
41
 
namespace plugin
42
 
{
 
28
#include <drizzled/visibility.h>
 
29
 
 
30
namespace drizzled {
 
31
namespace plugin {
43
32
 
44
33
class DRIZZLED_API Plugin
45
34
{
118
107
} /* end namespace plugin */
119
108
} /* end namespace drizzled */
120
109
 
121
 
#endif /* DRIZZLED_PLUGIN_PLUGIN_H */