aboutsummaryrefslogtreecommitdiff
path: root/xsd-frontend/semantic-graph/annotation.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-05-09 17:23:47 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-05-09 17:23:47 +0200
commit90801c5afeb37e4297076bdd5354ba41a7009a3f (patch)
tree98960b76e80c46814f38d345c63d9fb6edcc5f22 /xsd-frontend/semantic-graph/annotation.hxx
parentcf2783f792ee634ffbbb36311c9f69956b1d107e (diff)
Use standard types instead of ones from libcult
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: