#include <CIFListStart.h>
Public Member Functions | |
| CIFListStart (istream &inStream) | |
| TID | getFeatureID () const |
| double | getCollectionFrequency () const |
| unsigned int | getNumberOfElements () const |
| unsigned int | getNumberOfReservedElements () const |
Private Attributes | |
| TID | mFeatureID |
| float | mCollectionFrequency |
| unsigned int | mNumberOfElements |
| unsigned int | mNumberOfReservedElements |
Definition at line 52 of file CIFListStart.h.
| CIFListStart::CIFListStart | ( | istream & | inStream | ) |
Definition at line 57 of file CIFListStart.cc.
References mCollectionFrequency, and mNumberOfElements.
00057 { 00058 inStream.read((char*)this, 00059 sizeof(*this)); 00060 00061 assert(mCollectionFrequency && mNumberOfElements); 00062 };
| TID CIFListStart::getFeatureID | ( | ) | const |
Definition at line 78 of file CIFListStart.cc.
References mFeatureID.
Referenced by CAcIFFileSystem::FeatureToList(), CAcIFFileSystem::findWithinStream(), and CAcIFFileSystem::init().
00078 { 00079 return mFeatureID; 00080 };
| double CIFListStart::getCollectionFrequency | ( | ) | const |
Definition at line 96 of file CIFListStart.cc.
References mCollectionFrequency.
Referenced by CAcIFFileSystem::findWithinStream(), and CAcIFFileSystem::init().
00096 { 00097 return mCollectionFrequency; 00098 };
| unsigned int CIFListStart::getNumberOfElements | ( | ) | const |
Definition at line 113 of file CIFListStart.cc.
References mNumberOfElements.
Referenced by CAcIFFileSystem::FeatureToList(), and CAcIFFileSystem::findWithinStream().
00113 { 00114 return mNumberOfElements; 00115 };
| unsigned int CIFListStart::getNumberOfReservedElements | ( | ) | const |
Definition at line 129 of file CIFListStart.cc.
References mNumberOfReservedElements.
00129 { 00130 return mNumberOfReservedElements; 00131 };
TID CIFListStart::mFeatureID [private] |
float CIFListStart::mCollectionFrequency [private] |
Definition at line 56 of file CIFListStart.h.
Referenced by CIFListStart(), and getCollectionFrequency().
unsigned int CIFListStart::mNumberOfElements [private] |
The number of elements
Definition at line 58 of file CIFListStart.h.
Referenced by CIFListStart(), and getNumberOfElements().
unsigned int CIFListStart::mNumberOfReservedElements [private] |
The total number of elements be in this list before rearranging the file
Definition at line 62 of file CIFListStart.h.
Referenced by getNumberOfReservedElements().
1.5.6