浏览代码

Added trace MM

Yentl Van Tendeloo 8 年之前
父节点
当前提交
b2b50a88f4
共有 1 个文件被更改,包括 15 次插入0 次删除
  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) {}
+}