summaryrefslogtreecommitdiff
path: root/odb/semantics/elements.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-07-25 12:13:38 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-07-27 10:30:15 +0200
commit923639283d2bae0b82cb605fa4680a3058c9d973 (patch)
tree3c122b70129cdd2b502e1f7056eac896c109f03a /odb/semantics/elements.hxx
parentadfa9bbd04cd3571932ee7675344ca723bfa1eab (diff)
Add support for defining indexes
New db pragma qualifier: index. New tests: common/index, mysql/index, pgsql/index.
Diffstat (limited to 'odb/semantics/elements.hxx')
-rw-r--r--odb/semantics/elements.hxx19
1 files changed, 13 insertions, 6 deletions
diff --git a/odb/semantics/elements.hxx b/odb/semantics/elements.hxx
index 59e058d..ac62ff9 100644
--- a/odb/semantics/elements.hxx
+++ b/odb/semantics/elements.hxx
@@ -20,6 +20,7 @@
#include <cutl/compiler/context.hxx>
#include <odb/gcc-fwd.hxx>
+#include <odb/location.hxx>
namespace semantics
{
@@ -134,22 +135,30 @@ namespace semantics
}
public:
+ typedef ::location location_type;
+
path const&
file () const
{
- return file_;
+ return loc_.file;
}
size_t
line () const
{
- return line_;
+ return loc_.line;
}
size_t
column () const
{
- return column_;
+ return loc_.column;
+ }
+
+ location_type const&
+ location () const
+ {
+ return loc_;
}
public:
@@ -204,9 +213,7 @@ namespace semantics
tree tree_node_;
unit_type* unit_;
- path file_;
- size_t line_;
- size_t column_;
+ location_type loc_;
};
//