Example #1
0
 public QLSNode(Location location, QLSNodeType type, string id)
 {
     this.NodeType   = type;
     this.Location   = location;
     this.ID         = id;
     this.Children   = new List <QLSNode>();
     this.NodeStyles = new List <QLSStyle>();
 }
 public QLSStructuralNode(Location location, QLSNodeType type, string id) : base(location, type, id)
 {
 }
 public QLSStructuralNode(Location location, QLSNodeType type, string id, IList <QLSStyle> styles) : base(location, type, id, styles)
 {
 }
Example #4
0
 public QLSNode(Location location, QLSNodeType type, string id, IList <QLSStyle> styles) : this(location, type, id)
 {
     this.NodeStyles = styles;
 }