~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/show_status.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-08-08 04:22:33 UTC
  • mto: (1115.3.4 captain)
  • mto: This revision was merged to the branch mainline in revision 1117.
  • Revision ID: osullivan.padraig@gmail.com-20090808042233-q0z88zc490z3f3r7
Renamed the Command class to be Statement. Renamed the command directory to
statement and also the command header file to statement. Updated various
source files to reflect this renaming.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#ifndef DRIZZLED_COMMAND_SHOW_STATUS_H
22
 
#define DRIZZLED_COMMAND_SHOW_STATUS_H
 
21
#ifndef DRIZZLED_STATEMENT_SHOW_STATUS_H
 
22
#define DRIZZLED_STATEMENT_SHOW_STATUS_H
23
23
 
24
 
#include <drizzled/command.h>
 
24
#include <drizzled/statement.h>
25
25
 
26
26
class Session;
27
27
 
34
34
 * @class ShowStatus
35
35
 * @brief Represents the SHOW STATUS statement
36
36
 */
37
 
class ShowStatus : public SqlCommand
 
37
class ShowStatus : public Statement
38
38
{
39
39
public:
40
40
  ShowStatus(Session *in_session,
41
41
             pthread_mutex_t *in_show_lock)
42
42
    :
43
 
      SqlCommand(in_session),
 
43
      Statement(in_session),
44
44
      show_lock(in_show_lock)
45
45
  {}
46
46
 
60
60
 
61
61
} /* end namespace drizzled */
62
62
 
63
 
#endif /* DRIZZLED_COMMAND_SHOW_STATUS_H */
 
63
#endif /* DRIZZLED_STATEMENT_SHOW_STATUS_H */