Changeset 9570 for trunk/psModules/src/concepts/pmConceptsRead.c
- Timestamp:
- Oct 13, 2006, 3:02:31 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/concepts/pmConceptsRead.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/concepts/pmConceptsRead.c
r9539 r9570 22 22 // since the type is already known. 23 23 static psMetadataItem *parsePlain(psMetadataItem *concept, // The concept to parse 24 psMetadataItem *pattern // The concept pattern24 const psMetadataItem *pattern // The concept pattern 25 25 ) 26 26 { … … 55 55 psMetadata *cameraFormat, // The camera format 56 56 psMetadata *target, // The target 57 pmFPA *fpa,// The FPA58 pmChip *chip,// The chip59 pmCell *cell// The cell57 const pmFPA *fpa, // The FPA 58 const pmChip *chip, // The chip 59 const pmCell *cell // The cell 60 60 ) 61 61 { … … 111 111 ////////////////////////////////////////////////////////////////////////////////////////////////////////////// 112 112 113 bool pmConceptsReadFromCamera(psMetadata *specs, // The concept specifications 114 pmCell *cell, // The cell 115 psMetadata *target // Place into which to read the concepts 116 ) 113 bool p_pmConceptsReadFromCells(psMetadata *target, const psMetadata *specs, const pmCell *cell) 117 114 { 118 115 PS_ASSERT_PTR_NON_NULL(specs, false); … … 172 169 173 170 174 bool pmConceptsReadFromDefaults(psMetadata *specs, // The concept specifications 175 pmFPA *fpa, // The FPA 176 pmChip *chip, // The chip 177 pmCell *cell, // The cell 178 psMetadata *target // Place into which to read the concepts 179 ) 171 bool p_pmConceptsReadFromDefaults(psMetadata *target, const psMetadata *specs, 172 const pmFPA *fpa, const pmChip *chip, const pmCell *cell) 180 173 { 181 174 PS_ASSERT_PTR_NON_NULL(specs, false); … … 256 249 257 250 258 bool pmConceptsReadFromHeader(psMetadata *specs, // The concept specifications 259 pmFPA *fpa, // The FPA 260 pmChip *chip, // The chip 261 pmCell *cell, // The cell 262 psMetadata *target // Place into which to read the concepts 263 ) 251 bool p_pmConceptsReadFromHeader(psMetadata *target, const psMetadata *specs, 252 const pmFPA *fpa, const pmChip *chip, const pmCell *cell) 264 253 { 265 254 PS_ASSERT_PTR_NON_NULL(specs, false); … … 358 347 359 348 // XXX --- the below code has NOT been tested! 360 bool pmConceptsReadFromDatabase(psMetadata *specs, // The concept specifications 361 pmFPA *fpa, // The FPA 362 pmChip *chip, // The chip 363 pmCell *cell, // The cell 364 psDB *db, // The database handle 365 psMetadata *target // Place into which to read the concepts 366 ) 349 bool p_pmConceptsReadFromDatabase(psMetadata *target, const psMetadata *specs, 350 const pmFPA *fpa, const pmChip *chip, const pmCell *cell, psDB *db) 367 351 { 368 352 PS_ASSERT_PTR_NON_NULL(specs, false);
Note:
See TracChangeset
for help on using the changeset viewer.
