Skip to content
Snippets Groups Projects
Commit 77ef8106 authored by Julien Michel's avatar Julien Michel
Browse files

ENH: Reporting the == operator in ImageKeywordlist

parent 419bd2cb
No related branches found
No related tags found
No related merge requests found
......@@ -127,6 +127,7 @@ public:
ImageKeywordlist(const Self &);
void operator =(const Self&);
bool operator ==(const Self&);
protected:
/** Methods invoked by Print() to print information about the object
......
......@@ -58,6 +58,13 @@ operator =(const Self& p)
m_Keywordlist = p.m_Keywordlist;
}
bool
ImageKeywordlist::
operator ==(const Self& p)
{
return m_Keywordlist == p.m_Keywordlist;
}
void
ImageKeywordlist::
SetKeywordlist(const ossimKeywordlist& kwl)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment