~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to drizzled/table/singular.h

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

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
  }