~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement.h

pandora-build v0.71. Added check for avahi.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include <drizzled/sql_base.h>
28
28
#include <drizzled/show.h>
29
29
 
30
 
namespace drizzled
31
 
{
32
 
 
33
30
class Session;
34
31
class TableList;
35
32
class Item;
36
33
 
 
34
namespace drizzled
 
35
{
37
36
namespace statement
38
37
{
39
38
 
58
57
   */
59
58
  virtual bool execute()= 0;
60
59
 
61
 
  Session *getSession()
62
 
  {
63
 
    return session;
64
 
  }
65
 
 
66
60
protected:
67
61
 
68
62
  /**
71
65
  Session *session;
72
66
};
73
67
 
74
 
} /* namespace statement */
 
68
} /* end namespace statement */
75
69
 
76
 
} /* namespace drizzled */
 
70
} /* end namespace drizzled */
77
71
 
78
72
#endif /* DRIZZLED_STATEMENT_H */