25 template<
typename T>
class QList;
77 inline QString
name()
const {
86 bool isNamed(
const QString &match)
const {
93 inline QString
type()
const {
int keywords() const
Returns the number of keywords contained in the PvlContainer.
Definition: PvlContainer.h:100
PvlKeywordIterator end()
Return the ending iterator.
Definition: PvlContainer.h:208
bool hasKeyword(const QString &name) const
Check to see if a keyword exists.
Definition: PvlContainer.cpp:175
void operator-=(const QString &name)
When you use the -= operator with a (string) name, it will call the deleteKeyword() method...
Definition: PvlContainer.h:230
void operator+=(const PvlKeyword &keyword)
When you use the += operator with a PvlKeyword, it will call the addKeyword() method.
Definition: PvlContainer.h:124
Contains more than one keyword-value pair.
Definition: PvlContainer.h:63
PvlContainer(const QString &type)
Constructs a PvlContainer object with a type.
Definition: PvlContainer.cpp:42
void validateAllKeywords(PvlContainer &pPvlCont)
Validate All the Keywords in a Container comparing with the Template.
Definition: PvlContainer.cpp:410
void setIndent(int indent)
Sets the indent level when outputted(for formatting)
Definition: PvlKeyword.h:219
int indent() const
Returns the current indent level.
Definition: PvlKeyword.h:229
PvlKeyword & nameKeyword()
Definition: PvlContainer.h:287
QList< PvlKeyword > m_keywords
This is the vector of PvlKeywords the container is holding.
Definition: PvlContainer.h:304
Definition: PvlContainer.h:109
PvlKeywordIterator begin()
Return the beginning iterator.
Definition: PvlContainer.h:192
QString type() const
Returns the container type.
Definition: PvlContainer.h:93
PvlContainer * m_formatTemplate
Definition: PvlContainer.h:319
void validateRepeatOption(PvlKeyword &pPvlTmplKwrd, PvlContainer &pPvlCont)
Validate the Repeat Option for a Keyword.
Definition: PvlContainer.cpp:486
void addKeyword(const PvlKeyword &keyword, const InsertMode mode=Append)
Add a keyword to the container.
Definition: PvlContainer.cpp:218
static bool stringEqual(const QString &string1, const QString &string2)
Checks to see if two QStrings are equal.
Definition: PvlKeyword.cpp:551
bool hasFormatTemplate()
Definition: PvlContainer.h:254
void setName(const QString &name)
Set the name of the container.
Definition: PvlContainer.h:70
const PvlContainer & operator=(const PvlContainer &other)
This is an assignment operator.
Definition: PvlContainer.cpp:391
QString m_filename
This contains the filename used to initialize the pvl object.
Definition: PvlContainer.h:297
QString name() const
Returns the container name.
Definition: PvlContainer.h:77
int comments() const
Definition: PvlContainer.h:276
void addComment(QString comment)
Add a comment to the PvlKeyword.
Definition: PvlKeyword.cpp:392
PvlFormat * format()
Definition: PvlContainer.h:262
const PvlKeyword & nameKeyword() const
Definition: PvlContainer.h:290
InsertMode
Contains both modes: Append or Replace.
Definition: PvlContainer.h:109
bool cleanDuplicateKeywords()
Removes keywords from the container that have BOTH the same name and value.
Definition: PvlContainer.cpp:152
PvlFormat * format()
Get the current PvlFormat or create one.
Definition: PvlKeyword.cpp:912
QString comment(const int index) const
Return a comment at the specified index.
Definition: PvlKeyword.cpp:457
A single keyword-value pair.
Definition: PvlKeyword.h:98
ConstPvlKeywordIterator end() const
Return the const ending iterator.
Definition: PvlContainer.h:216
PvlKeyword & operator[](const QString &name)
When you use the [] operator with a (string) name, it will call the findKeyword() method...
Definition: PvlContainer.h:134
void init()
Sets the filename to blank.
Definition: PvlContainer.cpp:67
void setIndent(int indent)
Definition: PvlContainer.h:272
void setFileName(const QString &filename)
Sets the filename to the specified string.
Definition: PvlContainer.h:315
void setFormatTemplate(PvlContainer &ref)
Definition: PvlContainer.h:250
PvlKeyword & findKeyword(const QString &name)
Find a keyword with a specified name.
Definition: PvlContainer.cpp:78
void setFormat(PvlFormat *format)
Definition: PvlContainer.h:265
bool isNamed(const QString &match) const
Returns whether the given string is equal to the container name or not.
Definition: PvlContainer.h:86
ConstPvlKeywordIterator begin() const
Return the const beginning iterator.
Definition: PvlContainer.h:200
int indent()
Definition: PvlContainer.h:269
PvlKeyword & operator[](const char *name)
When you use the [] operator with a (char) name, it will call the findKeyword() method.
Definition: PvlContainer.h:144
QString fileName() const
Returns the filename used to initialise the Pvl object.
Definition: PvlContainer.h:246
QString name() const
Returns the keyword name.
Definition: PvlKeyword.h:114
Definition: BoxcarCachingAlgorithm.h:29
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
Definition: PvlContainer.h:109
const PvlKeyword & operator[](const QString &name) const
When you use the [] operator with a (string) name, it will call the findKeyword() method...
Definition: PvlContainer.h:155
PvlKeyword m_name
This is the name keyword.
Definition: PvlContainer.h:303
void addComment(const QString &comment)
Definition: PvlContainer.h:283
int comments() const
Returns the number of lines of comments associated with this keyword.
Definition: PvlKeyword.h:176
QList< PvlKeyword >::const_iterator ConstPvlKeywordIterator
The const keyword iterator.
Definition: PvlContainer.h:174
QDebug operator<<(QDebug debug, const Hillshade &hillshade)
Print this class out to a QDebug object.
Definition: Hillshade.cpp:308
PvlKeyword operator[](const char *name) const
When you use the [] operator with a (char) name, it will call the findKeyword() method.
Definition: PvlContainer.h:165
void setValue(QString value, QString unit="")
Sets new values.
Definition: PvlKeyword.cpp:171
QString comment(const int index) const
Definition: PvlContainer.h:279
PvlContainer * formatTemplate()
Definition: PvlContainer.h:258
void clear()
Clears PvlKeywords.
Definition: PvlContainer.h:105
void setFormat(PvlFormat *formatter)
Set the PvlFormatter used to format the keyword name and value(s)
Definition: PvlKeyword.cpp:901
void deleteKeyword(const QString &name)
Remove a specified keyword.
Definition: PvlContainer.cpp:113
QList< PvlKeyword >::iterator PvlKeywordIterator
The keyword iterator.
Definition: PvlContainer.h:171