~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/temporal.cc

  • Committer: Brian Aker
  • Date: 2009-04-16 20:12:59 UTC
  • mfrom: (992.1.20 mordred)
  • Revision ID: brian@gaz-20090416201259-2x3czxb5hsdisr6h
Merge Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
#include "drizzled/temporal_interval.h"
45
45
#endif
46
46
#include "drizzled/temporal_format.h"
 
47
#include "time.h"
47
48
 
48
49
#include <ostream>
49
50
#include <iomanip>
50
51
#include <vector>
51
52
#include <string.h>
52
53
 
53
 
/* time.h may already have been included in global.h, but we
54
 
   need to pick up the extra defs as well, after the global time.h */
55
 
#ifndef HAVE_DECL_TIMEGM
56
 
# include <gnulib/time.h>
57
 
#endif
58
 
 
59
54
extern std::vector<drizzled::TemporalFormat *> known_datetime_formats;
60
55
extern std::vector<drizzled::TemporalFormat *> known_date_formats;
61
56
extern std::vector<drizzled::TemporalFormat *> known_time_formats;