IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 400


Ignore:
Timestamp:
Apr 8, 2004, 12:11:08 PM (22 years ago)
Author:
Paul Price
Message:

Updated comments from "metadata set" to "metadata".
Removed typedef for psMetadata that was temporary solution.

File:
1 edited

Legend:

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

    r399 r400  
    5050} psMetadata;
    5151
    52 /** Metadata is actually a "set of metadata" */
    53 typedef psMetadata psMetadata;
    54 
    5552/** Functions **************************************************************/
    5653/** \addtogroup AstroGroup Astronomy-Specific Utilities
     
    8077/**** Utilities **********************************************************************/
    8178
    82 /// Add entry to the end of the metadata set
    83 psMetadataItem *psMetadataAppend(psMetadata *restrict ms, ///< Metadata set to add to
     79/// Add entry to the end of the metadata
     80psMetadataItem *psMetadataAppend(psMetadata *restrict ms, ///< metadata to add to
    8481                                 psMetadataItem *restrict item ///< Metatdata to add
    8582    );
    8683
    87 /// delete entry from the metadata set
    88 psMetadataItem *psMetadataRemove(psMetadata *restrict ms, ///< Metadata set to delete from
     84/// delete entry from the metadata
     85psMetadataItem *psMetadataRemove(psMetadata *restrict ms, ///< metadata to delete from
    8986                                 const char *restrict key ///< Key to delete
    9087    );
    9188
    9289/// reset the iterator to the start of the list
    93 void psMetadataIterator(psMetadata *ms ///< Metadata set to set iterator for
     90void psMetadataSetIterator(psMetadata *ms ///< metadata to set iterator for
    9491    );
    9592
    9693/// get the next entry in the sequence
    97 psMetadataItem *psMetadataGetNext(psMetadata *restrict ms, ///< Metadata set to get from
     94psMetadataItem *psMetadataGetNext(psMetadata *restrict ms, ///< metadata to get from
    9895                                  const char *restrict match ///< Match this
    9996    );
    10097
    10198/// find the metadata with the specified key
    102 psMetadataItem *psMetadataLookup(const psMetadata *restrict ms, ///< Metadata set to look up
     99psMetadataItem *psMetadataLookup(const psMetadata *restrict ms, ///< metadata to look up
    103100                                 const char *restrict key ///< Key to find
    104101    );
Note: See TracChangeset for help on using the changeset viewer.