Changeset 15492 for trunk/psLib/src/imageops/psImageStructManip.h
- Timestamp:
- Nov 7, 2007, 3:09:49 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/imageops/psImageStructManip.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/imageops/psImageStructManip.h
r15456 r15492 5 5 * @author Robert DeSonia, MHPCC 6 6 * 7 * @version $Revision: 1. 8$ $Name: not supported by cvs2svn $8 * @date $Date: 2007-11-0 5 23:56:33$7 * @version $Revision: 1.9 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2007-11-08 01:09:49 $ 9 9 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii 10 10 */ … … 64 64 * 65 65 */ 66 #ifdef DOXYGEN 66 67 psImage* psImageCopy( 67 68 psImage* output, ///< if not NULL, a psImage that could be recycled. … … 69 70 psElemType type ///< the desired datatype of the returned copy 70 71 ); 72 #else // ifdef DOXYGEN 73 psImage* p_psImageCopy( 74 const char *file, ///< File of caller 75 unsigned int lineno, ///< Line number of caller 76 const char *func, ///< Function name of caller 77 psImage* output, ///< if not NULL, a psImage that could be recycled. 78 const psImage* input, ///< the psImage to copy 79 psElemType type ///< the desired datatype of the returned copy 80 ) PS_ATTR_MALLOC; 81 #define psImageCopy(output, input, type) \ 82 p_psImageSubset(__FILE__, __LINE__, __func__, output, input, type) 83 #endif // ifdef DOXYGEN 71 84 72 85 /** Trim an image
Note:
See TracChangeset
for help on using the changeset viewer.
