~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/query_cache.h

Cleaned up the constructor initializer lists per Brian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
3
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
 
 
 
3
 *
5
4
 *  Definitions required for Query Cache plugin
6
 
 
 
5
 *
7
6
 *  Copyright (C) 2008 Sun Microsystems, Toru Maesaka
8
7
 *
9
8
 *  This program is free software; you can redistribute it and/or modify
41
40
{
42
41
  QueryCache();
43
42
  QueryCache(const QueryCache &);
 
43
  QueryCache& operator=(const QueryCache &);
44
44
public:
45
 
  explicit QueryCache(std::string name_arg): Plugin(name_arg) {}
 
45
  explicit QueryCache(std::string name_arg)
 
46
    : Plugin(name_arg)
 
47
  {}
46
48
 
47
49
  virtual ~QueryCache() {}
48
50
  /* Lookup the cache and transmit the data back to the client */