summaryrefslogtreecommitdiffstats
path: root/app/toscalib/types/relationship.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/toscalib/types/relationship.py')
-rw-r--r--app/toscalib/types/relationship.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/toscalib/types/relationship.py b/app/toscalib/types/relationship.py
new file mode 100644
index 0000000..b2408b0
--- /dev/null
+++ b/app/toscalib/types/relationship.py
@@ -0,0 +1,13 @@
+#Author: Shu Shi
+#emaiL: shushi@research.att.com
+
+
+class RelationshipType:
+ def __init__(self, name, content):
+ if name is None or content is None:
+ return None
+ self.name = name
+ self.raw_content = content
+
+ def _parse_content(self, db):
+ pass \ No newline at end of file