~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/generator/table.h

  • Committer: Brian Aker
  • Date: 2010-07-02 00:48:31 UTC
  • mto: This revision was merged to the branch mainline in revision 1647.
  • Revision ID: brian@gaz-20100702004831-luifkqhv2237ecob
Moved generators out of trunk of server.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#ifndef DRIZZLED_TABLE_GENERATOR_H
22
 
#define DRIZZLED_TABLE_GENERATOR_H
 
21
#ifndef DRIZZLED_GENERATOR_TABLE_H
 
22
#define DRIZZLED_GENERATOR_TABLE_H
23
23
 
24
24
#include "drizzled/session.h"
25
25
#include "drizzled/plugin/storage_engine.h"
26
26
 
27
27
namespace drizzled {
 
28
namespace generator {
28
29
 
29
 
class TableGenerator
 
30
class Table
30
31
{
31
32
  Session &session;
32
33
  message::Table table;
36
37
 
37
38
public:
38
39
 
39
 
  TableGenerator(Session &arg);
 
40
  Table(Session &arg);
40
41
 
41
42
  void reset(const SchemaIdentifier &schema_identifier);
42
43
 
69
70
  }
70
71
};
71
72
 
 
73
} /* namespace generator */
72
74
} /* namespace drizzled */
73
75
 
74
 
#endif /* DRIZZLED_TABLE_GENERATOR_H */
 
76
#endif /* DRIZZLED_GENERATOR_TABLE_H */