~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table/singular.h

  • Committer: Olaf van der Spek
  • Date: 2011-03-22 00:06:56 UTC
  • mto: (2245.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2246.
  • Revision ID: olafvdspek@gmail.com-20110322000656-32opecu17jlf2bd8
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#pragma once
24
24
 
25
 
namespace drizzled
26
 
{
27
 
 
28
 
namespace table
29
 
{
 
25
namespace drizzled {
 
26
namespace table {
30
27
 
31
28
class Singular : public Table
32
29
{
40
37
  {
41
38
  }
42
39
 
43
 
  Singular(Session *session, List<CreateField> &field_list);
 
40
  Singular(Session *session, std::list<CreateField>&);
44
41
 
45
 
  TableShare *getMutableShare(void)
 
42
  TableShare *getMutableShare()
46
43
  {
47
44
    return &_share;
48
45
  }
52
49
    assert(0);
53
50
  }
54
51
 
55
 
  const TableShare *getShare(void) const
 
52
  const TableShare *getShare() const
56
53
  {
57
54
    return &_share;
58
55
  }