Changeset 153 for trunk/archive/pslib/include/psStdArrays.h
- Timestamp:
- Mar 9, 2004, 12:28:16 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psStdArrays.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psStdArrays.h
r149 r153 4 4 #include "psArray.h" 5 5 6 /* ps- typedefs so that array names comply with the standard naming convention */ 7 /* These should not be used generally. */ 6 /** 7 * ps- typedefs so that array names comply with the standard naming convention. These should NOT be used 8 * generally. 9 */ 8 10 typedef float psFloat; 9 11 typedef int psInt; … … 11 13 typedef double psDouble; 12 14 13 /* An array of real numbers */15 /** An array of real numbers */ 14 16 PS_DECLARE_ARRAY_TYPE(psFloat); 15 17 PS_CREATE_ARRAY_TYPE(psFloat); 16 18 17 /* An array of complex numbers */19 /** An array of complex numbers */ 18 20 PS_DECLARE_ARRAY_TYPE(psComplex); 19 21 PS_CREATE_ARRAY_TYPE(psComplex); 20 22 21 /* An array of integers */23 /** An array of integers */ 22 24 PS_DECLARE_ARRAY_TYPE(psInt); 23 25 PS_CREATE_ARRAY_TYPE(psInt); 24 26 25 /* An array of double-precision real numbers */27 /** An array of double-precision real numbers */ 26 28 PS_DECLARE_ARRAY_TYPE(psDouble); 27 29 PS_CREATE_ARRAY_TYPE(psDouble);
Note:
See TracChangeset
for help on using the changeset viewer.
