~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/daemon.h

  • Committer: Brian Aker
  • Date: 2011-02-12 08:10:17 UTC
  • mto: This revision was merged to the branch mainline in revision 2161.
  • Revision ID: brian@tangent.org-20110212081017-7793i41ybt7gp5ty
More removal of session from includes.

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 */