~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/status_helper.cc

  • Committer: Brian Aker
  • Date: 2011-02-22 06:12:02 UTC
  • mfrom: (2190.1.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110222061202-k03czxykqy4x9hjs
List update, header fixes, multiple symbols, and David deletes some code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems
 
4
 *  Copyright (C) 2008 Sun Microsystems, Inc.
5
5
 *  Copyright (C) 2010 Joseph Daly 
6
6
 *
7
7
 *  This program is free software; you can redistribute it and/or modify
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#include "config.h"
 
21
#include <config.h>
22
22
#include <boost/lexical_cast.hpp>
23
23
#include "status_helper.h"
24
 
#include "drizzled/set_var.h"
25
 
#include "drizzled/drizzled.h"
26
 
#include "plugin/myisam/myisam.h"
 
24
#include <drizzled/set_var.h>
 
25
#include <drizzled/drizzled.h>
 
26
#include <plugin/myisam/myisam.h>
 
27
 
 
28
#include <drizzled/refresh_version.h>
27
29
 
28
30
#include <sstream>
29
31
 
32
34
namespace drizzled
33
35
{
34
36
 
35
 
extern uint64_t refresh_version;
36
37
extern time_t server_start_time;
37
38
extern time_t flush_status_time;
38
39