summaryrefslogtreecommitdiffstats
path: root/app/toscalib/types/relationship.py
blob: b2408b0d8cae2e46f1e5cfb459807905cfc59d4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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