~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/time/from_days.cc

  • Committer: Tim Penhey
  • Date: 2010-01-20 02:39:01 UTC
  • mto: This revision was merged to the branch mainline in revision 1275.
  • Revision ID: tim.penhey@canonical.com-20100120023901-8teeunid6gwlthzx
Add in a rot 13 function.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include <sstream>
26
26
#include <string>
27
27
 
28
 
namespace drizzled
29
 
{
30
 
 
31
28
/**
32
29
 * Interpret the first argument as a Julian Day Number and fill
33
30
 * our supplied temporal object.
34
31
 */
35
 
bool Item_func_from_days::get_temporal(Date &to)
 
32
bool Item_func_from_days::get_temporal(drizzled::Date &to)
36
33
{
37
34
  assert(fixed);
38
35
 
63
60
  }
64
61
  return true;
65
62
}
66
 
 
67
 
} /* namespace drizzled */