* How many attributes of various types are in this file? This * requires reading the file, so the filename must be set prior * to invoking this operation. (Note: file characteristics are * cached, so only a single read is necessary to return file * characteristics.) */
| 162 | * characteristics.) |
| 163 | */ |
| 164 | int GetNumberOfScalarsInFile() |
| 165 | { |
| 166 | this->CharacterizeFile(); |
| 167 | return this->NumberOfScalarsInFile; |
| 168 | } |
| 169 | int GetNumberOfVectorsInFile() |
| 170 | { |
| 171 | this->CharacterizeFile(); |
nothing calls this directly
no test coverage detected