File: common.cxx

package info (click to toggle)
odb 2.4.0-5
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 10,716 kB
  • ctags: 6,755
  • sloc: cpp: 41,102; sh: 11,329; makefile: 35
file content (28 lines) | stat: -rw-r--r-- 558 bytes parent folder | download | duplicates (4)
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 ();
  }
}