~mordred/drizzle/pandora-update

« back to all changes in this revision

Viewing changes to drizzled/table/singular.h

  • Committer: Lee Bieber
  • Date: 2011-03-23 01:55:35 UTC
  • mfrom: (2245.1.2 build)
  • Revision ID: kalebral@gmail.com-20110323015535-2aatqy8tyiuqtc2z
Merge Olaf - more code refactoring

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
  }