From ee9d405bc917be3f596ccd2ffd2d7ddc01687d31 Mon Sep 17 00:00:00 2001 From: Nathanael Sensfelder Date: Mon, 28 Aug 2017 16:27:12 +0200 Subject: Starts the Instance Calculator --- instance-calculator/src/VHDLArchitecture.java | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 instance-calculator/src/VHDLArchitecture.java (limited to 'instance-calculator/src/VHDLArchitecture.java') diff --git a/instance-calculator/src/VHDLArchitecture.java b/instance-calculator/src/VHDLArchitecture.java new file mode 100644 index 0000000..ffd678c --- /dev/null +++ b/instance-calculator/src/VHDLArchitecture.java @@ -0,0 +1,22 @@ +import java.util.*; + +public class VHDLArchitecture +{ + private static final Map FROM_ID; + + static + { + FROM_ID = new HashMap(); + } + + private final List processes; + private final List components; + private final String id; + + private VHDLArchitecture (final String id) + { + this.id = id; + + ports = new ArrayList(); + } +} -- cgit v1.2.3-70-g09d2