예제 #1
0
파일: SetSymbol.cs 프로젝트: tumcms/QL4BIM
 public SetSymbol(SetNode node) : base(node)
 {
     Header    = "Set->";
     entites   = new List <QLEntity>();
     entityDic = new Dictionary <int, QLEntity>();
 }
예제 #2
0
파일: Nodes.cs 프로젝트: tumcms/QL4BIM
 public AttributeAccessNode(SetNode setNode, ExAttNode exAttNode)
 {
     SetNode   = setNode;
     ExAttNode = exAttNode;
 }
예제 #3
0
파일: Nodes.cs 프로젝트: tumcms/QL4BIM
 public void SetSetReturn(SetNode returnSetNode)
 {
     returnSetNode.Parent = this;
     ReturnSetNode        = returnSetNode;
 }
예제 #4
0
파일: Nodes.cs 프로젝트: tumcms/QL4BIM
 public TypePredNode(SetNode setNode, string type)
 {
     SetNode = setNode;
     Type    = type;
 }