~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/outer_ref.h

  • Committer: Jay Pipes
  • Date: 2009-02-21 16:00:06 UTC
  • mto: (907.1.1 trunk-with-temporal)
  • mto: This revision was merged to the branch mainline in revision 908.
  • Revision ID: jpipes@serialcoder-20090221160006-vnk3wt4qbcz62eru
Removes the TIME column type and related time functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
 
20
#include <drizzled/item/direct_ref.h>
 
21
 
20
22
#ifndef DRIZZLED_ITEM_OUTER_REF_H
21
23
#define DRIZZLED_ITEM_OUTER_REF_H
22
24
 
23
 
#include "drizzled/item/ref.h"
24
 
#include "drizzled/item/direct_ref.h"
25
 
#include "drizzled/item/field.h"
 
25
#include <drizzled/item/ref.h>
 
26
#include <drizzled/item/direct_ref.h>
26
27
 
27
28
/*
28
29
  Class for outer fields.
34
35
  Item_field::fix_outer_field() functions.
35
36
*/
36
37
 
37
 
namespace drizzled
38
 
{
39
 
 
40
38
class Item_outer_ref :public Item_direct_ref
41
39
{
42
40
public:
79
77
  virtual Ref_Type ref_type() { return OUTER_REF; }
80
78
};
81
79
 
82
 
} /* namespace drizzled */
83
80
 
84
81
#endif /* DRIZZLED_ITEM_OUTER_REF_H */