IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 9, 2004, 2:05:25 PM (22 years ago)
Author:
Paul Price
Message:

Changed constructor/destructor naming convention from "psXyzNew" to "psXyzAlloc"
and from "psXyzDel" to "psXyzFree".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psMatrix.h

    r153 r160  
    1010/** Constructor */
    1111psMatrix *
    12 psMatrixNew(int Xdimen,                 //!< x dimension of new matrix
     12psMatrixAlloc(int Xdimen,                       //!< x dimension of new matrix
    1313            int Ydimen                  //!< y dimension of new matrix
    1414            );
     
    1616/** Destructor */
    1717void
    18 psMatrixDel(psMatrix *restrict myMatrix //!< Matrix to destroy
     18psMatrixFree(psMatrix *restrict myMatrix        //!< Matrix to destroy
    1919            );
    2020
Note: See TracChangeset for help on using the changeset viewer.