Browse Source

Added trace MM

Yentl Van Tendeloo 8 years ago
parent
commit
b2b50a88f4
1 changed files with 15 additions and 0 deletions
  1. 15 0
      models/trace.mvc

+ 15 - 0
models/trace.mvc

@@ -0,0 +1,15 @@
+SCD TraceLanguage{
+    SimpleAttribute String {}
+    SimpleAttribute Float {}
+
+    Class Signal {
+        name : String
+    }
+
+    Class Point {
+        x : Float
+        y : Float
+    }
+
+    Association contains (Signal, Point) {}
+}