~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/daemon.h

  • Committer: Andrew Hutchings
  • Date: 2011-02-01 10:23:22 UTC
  • mto: (2136.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2137.
  • Revision ID: andrew@linuxjedi.co.uk-20110201102322-oxztcyrjzg3c7yta
Fix counters cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20
20
 */
21
21
 
22
 
#pragma once
23
 
 
24
 
#include <drizzled/plugin/plugin.h>
25
 
 
26
 
#include <drizzled/visibility.h>
27
 
 
28
 
namespace drizzled {
29
 
namespace plugin {
 
22
#ifndef DRIZZLED_PLUGIN_DAEMON_H
 
23
#define DRIZZLED_PLUGIN_DAEMON_H
 
24
 
 
25
#include "drizzled/plugin/plugin.h"
 
26
 
 
27
#include "drizzled/visibility.h"
 
28
 
 
29
namespace drizzled
 
30
{
 
31
class Session;
 
32
 
 
33
namespace plugin
 
34
{
30
35
 
31
36
class DRIZZLED_API Daemon : public Plugin
32
37
{
55
60
} /* namespace plugin */
56
61
} /* namespace drizzled */
57
62
 
 
63
#endif /* DRIZZLED_PLUGIN_DAEMON_H */