IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4086


Ignore:
Timestamp:
Jun 1, 2005, 6:13:41 PM (21 years ago)
Author:
jhoblitt
Message:

add PS_META_NULL

Location:
trunk/doc/pslib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/pslib/ChangeLogSDRS.tex

    r4085 r4086  
    1 %%% $Id: ChangeLogSDRS.tex,v 1.121 2005-06-02 00:58:26 jhoblitt Exp $
     1%%% $Id: ChangeLogSDRS.tex,v 1.122 2005-06-02 04:13:41 jhoblitt Exp $
    22
    33\subsection{Changes from version 00 to version 01}
     
    665665  \item change \code{psBitSet} to store it's size as an \code{long int}
    666666\end{itemize}
    667 \end{itemize}
     667\item add \code{PS_META_NULL}
     668\end{itemize}
  • trunk/doc/pslib/psLibSDRS.tex

    r4085 r4086  
    1 %%% $Id: psLibSDRS.tex,v 1.257 2005-06-02 00:58:26 jhoblitt Exp $
     1%%% $Id: psLibSDRS.tex,v 1.258 2005-06-02 04:13:41 jhoblitt Exp $
    22\documentclass[panstarrs,spec]{panstarrs}
    33
     
    40784078\begin{datatype}
    40794079typedef enum {                          ///< option flags for psMetadata functions
    4080     PS_META_DEFAULT,                    ///< default behavior (0x0000) for use in mode above
    4081     PS_META_REPLACE,                    ///< allow entry to be replaced
    4082     PS_META_DUPLICATE_OK,               ///< allow entry to be replaced
     4080    PS_META_DEFAULT         = 0,        ///< default behavior (0x0000) for use in mode above
     4081    PS_META_REPLACE         = 0x1000000 ///< allow entry to be replaced
     4082    PS_META_DUPLICATE_OK    = 0x2000000 ///< allow duplicate entries
     4083    PS_META_NULL            = 0x4000000 ///< psMetadataItem.data is a NULL value
    40834084} psMetadataFlags;
    40844085\end{datatype}
     
    41054106contain both the existing item and the new item.  The original entry's
    41064107location on the psMetadata.list must be maintained.
     4108
     4109\code{PS_META_NULL}:  Indicates that \code{psMetadataItem.data} should be
     4110ignored and that the the current value is ``NULL'' or undefined.  The
     4111\code{psMetadataItem} must have a proper \code{type} set and it's \code{data}
     4112field shall have a valid value.  e.g. A \code{type} of \code{PS_META_STR} would
     4113require that 's \code{data} is set to \code{NULL}.
    41074114
    41084115There are several of cases to handle for duplication of an existing
Note: See TracChangeset for help on using the changeset viewer.