Index: trunk/archive/pslib/include/psObjects.h
===================================================================
--- trunk/archive/pslib/include/psObjects.h	(revision 153)
+++ trunk/archive/pslib/include/psObjects.h	(revision 160)
@@ -37,9 +37,9 @@
 /** Constructor */
 psObject *
-psObjectNew(void);
+psObjectAlloc(void);
 
 /** Destructor */
 void
-psObjectDel(psObject *restrict myObject);
+psObjectFree(psObject *restrict myObject);
 
 /***********************************************************************************************************/
@@ -59,5 +59,5 @@
 /** Constructor */
 psImageObjects *
-psImageObjectsNew(const psImage *image,	//!< Image that produced the objects, which has metadata we need
+psImageObjectsAlloc(const psImage *image,	//!< Image that produced the objects, which has metadata we need
 		  psObjectArray *objects //!< The objects
 		  );
@@ -65,5 +65,5 @@
 /** Destructor */
 void
-psImageObjectsDel(psImageObjects *restrict myImageObjects //!< Object to destroy
+psImageObjectsFree(psImageObjects *restrict myImageObjects //!< Object to destroy
 		  );
 
@@ -78,5 +78,5 @@
 /** Constructor */
 psCatalogueObjects *
-psCatalogueObjectsNew(enum psCatalogue *catalogue, //!< Source catalogue
+psCatalogueObjectsAlloc(enum psCatalogue *catalogue, //!< Source catalogue
 		      psObjectArray *objects //!< The objects
 		      );
@@ -84,5 +84,5 @@
 /** Destructor */
 void
-psCatalogueObjectsDel(psCatalogeObjects *restrict myCatalogueObjects //!< Object to destroy
+psCatalogueObjectsFree(psCatalogeObjects *restrict myCatalogueObjects //!< Object to destroy
 		      );
 
@@ -103,5 +103,5 @@
 /** Constructor */
 psSuperObject *
-psSuperObjectNew(const psImageArray *images, //!< The images with the measurements
+psSuperObjectAlloc(const psImageArray *images, //!< The images with the measurements
 		 const psObjectArray *objects //!< Object measurements
 		 );
@@ -109,5 +109,5 @@
 /** Destructor */
 void
-psSuperObjectDel(psSuperObject *restrict mySuperObject //!< Object to destroy
+psSuperObjectFree(psSuperObject *restrict mySuperObject //!< Object to destroy
 		 );
 
