~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2009-07-16 22:37:01 UTC
  • mto: This revision was merged to the branch mainline in revision 1100.
  • Revision ID: brian@gaz-20090716223701-vbbbo8dmgd2ljqqo
Refactor TableShare has to be behind class.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include "drizzled/function/time/date.h"
24
24
 
25
 
namespace drizzled
26
 
{
27
 
 
28
25
/* forward declarations */
29
 
class Date;
 
26
namespace drizzled {class Date;}
30
27
 
31
28
class Item_func_from_days :public Item_date
32
29
{
36
33
  /**
37
34
   * All functions which inherit from Item_date must implement
38
35
   * their own get_temporal() method, which takes a supplied
39
 
   * Date reference and populates it with a correct
 
36
   * drizzled::Date reference and populates it with a correct
40
37
   * date based on the semantics of the function.
41
38
   *
42
39
   * For FROM_DAYS(), we interpret the function's argument
49
46
   * For a NULL parameter, we return false and set null_value
50
47
   * to true.
51
48
   *
52
 
   * @param Reference to a Date to populate
 
49
   * @param Reference to a drizzled::Date to populate
53
50
   */
54
 
  bool get_temporal(Date &temporal);
 
51
  bool get_temporal(drizzled::Date &temporal);
55
52
};
56
53
 
57
 
} /* namespace drizzled */
58
 
 
59
54
 
60
55
#endif /* DRIZZLED_FUNCTION_TIME_FROM_DAYS_H */