Exemplo n.º 1
0
            public SLComponent Create(SLComponent root, ComponentType type, int handle)
            {
                var com = Create(root, type);

                root.LinkTo(handle, com);
                return(com);
            }
Exemplo n.º 2
0
            public SLComponent Create(SLComponent root, ComponentType type, string key)
            {
                var com = Create(root, type);

                root.LinkTo(key, com);
                return(com);
            }
Exemplo n.º 3
0
            private void defaultLink(SLComponent root, SLComponent com)
            {
                root.LinkTo(com);
                var ptr = SLPointer.Index(com._index);

                root.insert(ref ptr, com);
            }
Exemplo n.º 4
0
 public static void BidLink(SLComponent lhs, SLComponent rhs)
 {
     lhs.LinkTo(rhs);
     rhs.LinkTo(lhs);
 }