~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/daemon.h

  • Committer: Olaf van der Spek
  • Date: 2011-03-28 14:32:36 UTC
  • mto: (2257.1.1 build) (2276.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2258.
  • Revision ID: olafvdspek@gmail.com-20110328143236-4ge1d793iqaktfq0
Common fwd

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
 
#ifndef DRIZZLED_PLUGIN_DAEMON_H
23
 
#define DRIZZLED_PLUGIN_DAEMON_H
24
 
 
25
 
#include "drizzled/plugin/plugin.h"
 
22
#pragma once
 
23
 
 
24
#include <drizzled/plugin/plugin.h>
 
25
 
 
26
#include <drizzled/visibility.h>
26
27
 
27
28
namespace drizzled
28
29
{
31
32
namespace plugin
32
33
{
33
34
 
34
 
class Daemon : public Plugin
 
35
class DRIZZLED_API Daemon : public Plugin
35
36
{
36
37
  Daemon();
37
38
  Daemon(const Daemon &);
58
59
} /* namespace plugin */
59
60
} /* namespace drizzled */
60
61
 
61
 
#endif /* DRIZZLED_PLUGIN_DAEMON_H */