~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/tztime.h

  • Committer: Stewart Smith
  • Date: 2011-02-10 01:03:48 UTC
  • mto: (2154.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2155.
  • Revision ID: stewart@flamingspork.com-20110210010348-5l0zh0akjahvx3vi
fix Session::tx_isolation to be getTxIsolation to follow coding style, but look weird

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