File failed to load: https://isis.astrogeology.usgs.gov/9.0.0/Object/assets/jax/output/NativeMML/config.js
Isis 3 Programmer Reference
CisscalFile.h
1#ifndef CISSCALFILE_H
2#define CISSCALFILE_H
3
9
10/* SPDX-License-Identifier: CC0-1.0 */
11
12#include <vector>
13
14#include <QString>
15
16#include "TextFile.h"
17
18namespace Isis {
36 class CisscalFile : public TextFile {
37 public:
38 CisscalFile(const QString &filename, const char *openmode = "input",
39 const char *extension = "");
44 bool GetLine(QString &line);
45 protected:
46 bool p_begindataFound;
47 bool p_GetLine(QString &line);
48 };
49};
50#endif
bool p_GetLine(QString &line)
Get next line of valid data, protected.
CisscalFile(const QString &filename, const char *openmode="input", const char *extension="")
Constructs a CisscalFile object and opens the specified file (including path).
bool GetLine(QString &line)
Get next line of valid data.
TextFile()
Constructs an empty TextFile object.
Definition TextFile.cpp:22
void Close()
Closes file. Called automatically by TextFile destructor.
Definition TextFile.cpp:326
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16