Changeset 160 for trunk/archive/pslib/include/psObjects.h
- Timestamp:
- Mar 9, 2004, 2:05:25 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psObjects.h (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psObjects.h
r153 r160 37 37 /** Constructor */ 38 38 psObject * 39 psObject New(void);39 psObjectAlloc(void); 40 40 41 41 /** Destructor */ 42 42 void 43 psObject Del(psObject *restrict myObject);43 psObjectFree(psObject *restrict myObject); 44 44 45 45 /***********************************************************************************************************/ … … 59 59 /** Constructor */ 60 60 psImageObjects * 61 psImageObjects New(const psImage *image, //!< Image that produced the objects, which has metadata we need61 psImageObjectsAlloc(const psImage *image, //!< Image that produced the objects, which has metadata we need 62 62 psObjectArray *objects //!< The objects 63 63 ); … … 65 65 /** Destructor */ 66 66 void 67 psImageObjects Del(psImageObjects *restrict myImageObjects //!< Object to destroy67 psImageObjectsFree(psImageObjects *restrict myImageObjects //!< Object to destroy 68 68 ); 69 69 … … 78 78 /** Constructor */ 79 79 psCatalogueObjects * 80 psCatalogueObjects New(enum psCatalogue *catalogue, //!< Source catalogue80 psCatalogueObjectsAlloc(enum psCatalogue *catalogue, //!< Source catalogue 81 81 psObjectArray *objects //!< The objects 82 82 ); … … 84 84 /** Destructor */ 85 85 void 86 psCatalogueObjects Del(psCatalogeObjects *restrict myCatalogueObjects //!< Object to destroy86 psCatalogueObjectsFree(psCatalogeObjects *restrict myCatalogueObjects //!< Object to destroy 87 87 ); 88 88 … … 103 103 /** Constructor */ 104 104 psSuperObject * 105 psSuperObject New(const psImageArray *images, //!< The images with the measurements105 psSuperObjectAlloc(const psImageArray *images, //!< The images with the measurements 106 106 const psObjectArray *objects //!< Object measurements 107 107 ); … … 109 109 /** Destructor */ 110 110 void 111 psSuperObject Del(psSuperObject *restrict mySuperObject //!< Object to destroy111 psSuperObjectFree(psSuperObject *restrict mySuperObject //!< Object to destroy 112 112 ); 113 113
Note:
See TracChangeset
for help on using the changeset viewer.
