~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/outer_ref.h

  • Committer: Olaf van der Spek
  • Date: 2011-10-24 21:23:54 UTC
  • mto: This revision was merged to the branch mainline in revision 2449.
  • Revision ID: olafvdspek@gmail.com-20111024212354-j32gbc2sbsw0985q
Use str_ref

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
 
#ifndef DRIZZLED_ITEM_OUTER_REF_H
21
 
#define DRIZZLED_ITEM_OUTER_REF_H
 
20
#pragma once
22
21
 
23
 
#include "drizzled/item/ref.h"
24
 
#include "drizzled/item/direct_ref.h"
25
 
#include "drizzled/item/field.h"
 
22
#include <drizzled/item/ref.h>
 
23
#include <drizzled/item/direct_ref.h>
 
24
#include <drizzled/item/field.h>
26
25
 
27
26
/*
28
27
  Class for outer fields.
34
33
  Item_field::fix_outer_field() functions.
35
34
*/
36
35
 
37
 
namespace drizzled
38
 
{
 
36
namespace drizzled {
39
37
 
40
 
class Item_outer_ref :public Item_direct_ref
 
38
class Item_outer_ref : public Item_direct_ref
41
39
{
42
40
public:
43
41
  Item *outer_ref;
81
79
 
82
80
} /* namespace drizzled */
83
81
 
84
 
#endif /* DRIZZLED_ITEM_OUTER_REF_H */