~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/command_reader.h

Cleaned up the constructor initializer lists per Brian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
 * A command reader is a class which is able to read Command messages from some source
33
33
 */
34
34
 
 
35
namespace drizzled
 
36
{
35
37
/* some forward declarations needed */
36
 
namespace drizzled
37
 
{
38
 
  namespace message
39
 
  {
40
 
    class Command;
41
 
  }
42
 
}
 
38
namespace message { class Command; } }
43
39
 
44
 
namespace drizzled
45
 
{
46
40
namespace plugin
47
41
{
48
42
 
54
48
{
55
49
  CommandReader();
56
50
  CommandReader(const CommandReader &);
 
51
  CommandReader& operator=(const CommandReader &);
57
52
public:
58
53
  explicit CommandReader(std::string name_arg) : Plugin(name_arg) {}
59
54
  virtual ~CommandReader() {}