~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/logging.h

  • Committer: patrick crews
  • Date: 2011-06-08 03:02:27 UTC
  • mto: This revision was merged to the branch mainline in revision 2329.
  • Revision ID: gleebix@gmail.com-20110608030227-updkyv2652zvfajc
Initial voodoo worked to give us a crashme mode.  Need docs still

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 *
4
4
 *  Definitions required for Query Logging plugin
5
5
 *
6
 
 *  Copyright (C) 2008 Sun Microsystems
 
6
 *  Copyright (C) 2008 Sun Microsystems, Inc.
7
7
 *
8
8
 *  This program is free software; you can redistribute it and/or modify
9
9
 *  it under the terms of the GNU General Public License as published by
19
19
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20
20
 */
21
21
 
22
 
#ifndef DRIZZLED_PLUGIN_LOGGING_H
23
 
#define DRIZZLED_PLUGIN_LOGGING_H
24
 
 
25
 
#include "drizzled/plugin/plugin.h"
26
 
 
27
 
#include <string>
28
 
 
29
 
namespace drizzled
30
 
{
31
 
class Session;
32
 
 
33
 
namespace plugin
34
 
{
35
 
 
36
 
class Logging : public Plugin
 
22
#pragma once
 
23
 
 
24
#include <drizzled/plugin/plugin.h>
 
25
#include <drizzled/visibility.h>
 
26
 
 
27
namespace drizzled {
 
28
namespace plugin {
 
29
 
 
30
class DRIZZLED_API Logging : public Plugin
37
31
{
38
32
  Logging();
39
33
  Logging(const Logging &);
64
58
} /* namespace plugin */
65
59
} /* namespace drizzled */
66
60
 
67
 
#endif /* DRIZZLED_PLUGIN_LOGGING_H */