CLI2: Added ::unTag

This commit is contained in:
Paul Beckingham 2015-06-20 11:49:53 -07:00
parent eca0e35451
commit c235b63572
2 changed files with 2 additions and 2 deletions

View file

@ -98,7 +98,6 @@ void A2::tag (const std::string& tag)
_tags.push_back (tag); _tags.push_back (tag);
} }
/*
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
void A2::unTag (const std::string& tag) void A2::unTag (const std::string& tag)
{ {
@ -112,6 +111,7 @@ void A2::unTag (const std::string& tag)
} }
} }
/*
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
void A2::unTagAll () void A2::unTagAll ()
{ {

View file

@ -43,8 +43,8 @@ public:
A2& operator= (const A2&); A2& operator= (const A2&);
bool hasTag (const std::string&) const; bool hasTag (const std::string&) const;
void tag (const std::string&); void tag (const std::string&);
/*
void unTag (const std::string&); void unTag (const std::string&);
/*
void unTagAll (); void unTagAll ();
*/ */
void attribute (const std::string&, const std::string&); void attribute (const std::string&, const std::string&);