~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/util/gmtime.h

  • Committer: Mark Atwood
  • Date: 2011-07-07 02:23:49 UTC
  • mfrom: (2318.7.3 refactor18)
  • Revision ID: me@mark.atwood.name-20110707022349-y9xgv0io20t368bd
mergeĀ lp:~olafvdspek/drizzle/refactor19

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
namespace drizzled {
30
30
namespace util {
31
31
 
32
 
tm *gmtime(const type::epoch_t &timer, tm *tmbuf);
33
 
void gmtime(const type::epoch_t &timer, type::Time &tmbuf);
34
 
tm *localtime(const type::epoch_t &timer, tm *tmbuf);
35
 
void localtime(const type::epoch_t &timer,  type::Time &tmbuf);
 
32
tm* gmtime(const type::epoch_t&, tm*);
 
33
void gmtime(const type::epoch_t&, type::Time&);
36
34
 
37
35
} /* namespace util */
38
36
} /* namespace drizzled */