~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table/placeholder.h

  • Committer: Brian Aker
  • Date: 2010-10-15 05:30:39 UTC
  • mfrom: (1843.8.7 trunk-drizzle)
  • Revision ID: brian@tangent.org-20101015053039-ebmv3hnn1yaq4wqy
Merge in refactoring on table (broken it up by type, this will allow me to
insert the new locking).

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
namespace drizzled
27
27
{
28
28
 
29
 
class TablePlaceholder : public Table
 
29
namespace table
 
30
{
 
31
 
 
32
class Placeholder : public Table
30
33
{
31
34
  TableShare private_share;
32
35
 
33
36
public:
34
 
  TablePlaceholder(Session *session, TableIdentifier &identifier) :
 
37
  Placeholder(Session *session, TableIdentifier &identifier) :
35
38
    Table(),
36
39
    private_share(identifier, identifier.getKey())
37
40
  {
47
50
  }
48
51
};
49
52
 
 
53
} /* namespace table */
50
54
} /* namespace drizzled */
51
55
 
52
56
#endif /* DRIZZLED_TABLE_PLACEHOLDER_H */