~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/archive/ha_archive.h

  • Committer: Monty Taylor
  • Date: 2009-07-21 04:24:13 UTC
  • mto: (1093.1.24 captain)
  • mto: This revision was merged to the branch mainline in revision 1099.
  • Revision ID: mordred@inaugust.com-20090721042413-kk03bvxndjpp2l6w
Removed using namespace entries from bare headers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#include <drizzled/handler.h>
23
23
#include <string>
24
24
 
25
 
using namespace std;
26
 
 
27
25
/*
28
26
  Please read ha_archive.cc first. If you are looking for more general
29
27
  answers on how storage engines work, look at ha_example.cc and
44
42
 
45
43
  bool prime(uint64_t *auto_increment);
46
44
 
47
 
  string table_name;
 
45
  std::string table_name;
48
46
  char data_file_name[FN_REFLEN];
49
47
  uint32_t use_count;
50
48
  pthread_mutex_t mutex;