aboutsummaryrefslogtreecommitdiff
path: root/odb/relational/common.cxx
blob: c67b7740886c781275700fe5228e20385bf7e297 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// file      : odb/relational/common.cxx
// copyright : Copyright (c) 2009-2015 Code Synthesis Tools CC
// license   : GNU GPL v3; see accompanying LICENSE file

#include <odb/relational/common.hxx>

using namespace std;

namespace relational
{
  // member_image_type
  //
  string member_image_type::
  image_type (semantics::data_member&)
  {
    assert (false);
    return string ();
  }

  // member_database_type_id
  //
  string member_database_type_id::
  database_type_id (semantics::data_member&)
  {
    assert (false);
    return string ();
  }
}