~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/tztime.h

  • Committer: Lee Bieber
  • Date: 2011-02-11 20:30:05 UTC
  • mfrom: (2157.1.3 build)
  • Revision ID: kalebral@gmail.com-20110211203005-757o1y2yf78dxzqr
Merge Stewart - 716848: drizzleimport displays wrong program_name
Merge Stewart - update README file
Merge Andrew and Joe - Exposes the InnoDB SYS_REPLICATION_LOG to data_dictionary so that it is fast and fixes many issues we have been having

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_TZTIME_H
22
22
#define DRIZZLED_TZTIME_H
23
23
 
24
 
#include <drizzled/memory/sql_alloc.h>
25
 
#include <drizzled/type/time.h>
 
24
#include "drizzled/memory/sql_alloc.h"
26
25
 
27
 
#include <drizzled/type/time.h>
 
26
#include "drizzled/type/time.h"
28
27
 
29
28
namespace drizzled
30
29
{
31
30
 
32
31
class String;
33
32
 
 
33
namespace type {
 
34
class Time;
 
35
}
 
36
 
34
37
/**
35
38
  This class represents abstract time zone and provides
36
39
  basic interface for type::Time <-> type::Time::epoch_t conversion.
70
73
};
71
74
 
72
75
extern Time_zone * my_tz_SYSTEM;
73
 
bool     my_tz_init(Session *org_session, const char *default_tzname);
 
76
extern Time_zone * my_tz_find(Session *session, const String *name);
 
77
extern bool     my_tz_init(Session *org_session, const char *default_tzname);
74
78
 
75
79
} /* namespace drizzled */
76
80