~ubuntu-branches/ubuntu/saucy/drizzle/saucy-proposed

« back to all changes in this revision

Viewing changes to drizzled/plugin/logging.h

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#pragma once
23
23
 
24
24
#include <drizzled/plugin/plugin.h>
25
 
 
26
 
#include <string>
27
 
 
28
25
#include <drizzled/visibility.h>
29
26
 
30
 
namespace drizzled
31
 
{
32
 
class Session;
33
 
 
34
 
namespace plugin
35
 
{
 
27
namespace drizzled {
 
28
namespace plugin {
36
29
 
37
30
class DRIZZLED_API Logging : public Plugin
38
31
{
39
 
  Logging();
40
 
  Logging(const Logging &);
41
 
  Logging& operator=(const Logging &);
42
32
public:
43
33
  explicit Logging(std::string name_arg)
44
34
    : Plugin(name_arg, "Logging")
45
35
  {}
46
 
  virtual ~Logging() {}
47
36
 
48
37
  /**
49
38
   * Make these no-op rather than pure-virtual so that it's easy for a plugin