aboutsummaryrefslogtreecommitdiff
path: root/xsd-frontend/semantic-graph/annotation.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xsd-frontend/semantic-graph/annotation.hxx')
-rw-r--r--xsd-frontend/semantic-graph/annotation.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/xsd-frontend/semantic-graph/annotation.hxx b/xsd-frontend/semantic-graph/annotation.hxx
index c6e5dfc..3d6f098 100644
--- a/xsd-frontend/semantic-graph/annotation.hxx
+++ b/xsd-frontend/semantic-graph/annotation.hxx
@@ -28,16 +28,16 @@ namespace XSDFrontend
public:
Annotates (): annotation_ (0) {}
- Void
+ void
set_left_node (Annotation& a)
{
annotation_ = &a;
}
- Void
+ void
set_right_node (Node&) {}
- Void
+ void
set_right_node (Edge&) {}
private:
@@ -57,14 +57,14 @@ namespace XSDFrontend
public:
Annotation (Path const& file,
- UnsignedLong line,
- UnsignedLong column,
+ unsigned long line,
+ unsigned long column,
WideString const& documentation)
: Node (file, line, column), documentation_ (documentation)
{
}
- Void
+ void
add_edge_left (Annotates&) {}
private: