IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 3, 2007, 12:53:47 PM (19 years ago)
Author:
jhoblitt
Message:

change pxNodeAlloc() to only create nodes and not try to link them
add pxNodeAddChild() and pxNodeAddParent()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/pxtree.h

    r14589 r15187  
    3636
    3737pxNode *pxNodeAlloc(
    38     const char *name,
    39     pxNode  *parent
     38    const char *name
    4039) PS_ATTR_MALLOC;
     40
     41pxNode *pxNodeAddParent(pxNode *node, pxNode *parent);
     42pxNode *pxNodeAddChild(pxNode *node, pxNode *child);
    4143
    4244void pxNodePrint(
     
    5961pxNode *pxTreeFromMetadata(psMetadata *md);
    6062
    61 
    62 /*
    63 bool pxNodeAddChild(
    64     pxNode  *parent,
    65     pxNode  *child
    66 );
    67 */
    68 
    6963#endif // PXTREE_H
Note: See TracChangeset for help on using the changeset viewer.