summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-07-21 16:50:25 +0200
committerNathanael Sensfelder <SpamShield0@MultiAgentSystems.org>2017-07-21 16:50:25 +0200
commitd05bd3592050a9496dd87bcd8a49f8fdc8b6b58d (patch)
tree13ce81449e21c48621ae0ef4dd0f451b72f1c37a /ast-to-instr/src/VHDLNode.java
parent0aa91fb542bd4e2bec97de98ab819ddd6ccbb698 (diff)
Adds output support.
Diffstat (limited to 'ast-to-instr/src/VHDLNode.java')
-rw-r--r--ast-to-instr/src/VHDLNode.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/ast-to-instr/src/VHDLNode.java b/ast-to-instr/src/VHDLNode.java
index 1774672..cb3fb4d 100644
--- a/ast-to-instr/src/VHDLNode.java
+++ b/ast-to-instr/src/VHDLNode.java
@@ -5,9 +5,11 @@ public abstract class VHDLNode extends ParsableXML
protected final IDs next_node;
protected final int depth;
protected final String[] attributes;
+ protected final OutputFile output;
public VHDLNode
(
+ final OutputFile output,
final IDs parent_id,
final Node xml_node,
final IDs next_node,
@@ -17,6 +19,7 @@ public abstract class VHDLNode extends ParsableXML
{
super(parent_id, xml_node);
+ this.output = output;
this.next_node = next_node;
this.depth = depth;
this.attributes = attributes;