~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/outer_ref.h

  • Committer: Brian Aker
  • Date: 2009-12-18 18:31:01 UTC
  • mfrom: (1241.2.7 build)
  • Revision ID: brian@gaz-20091218183101-igqg1dtowpa0o70s
Fixed from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
34
34
  Item_field::fix_outer_field() functions.
35
35
*/
36
36
 
37
 
namespace drizzled
38
 
{
39
 
 
40
37
class Item_outer_ref :public Item_direct_ref
41
38
{
42
39
public:
79
76
  virtual Ref_Type ref_type() { return OUTER_REF; }
80
77
};
81
78
 
82
 
} /* namespace drizzled */
83
79
 
84
80
#endif /* DRIZZLED_ITEM_OUTER_REF_H */