- Added default constructor, so it plays nice with others.
- Added ::clear method to reset all members.
This commit is contained in:
Paul Beckingham
2014-10-15 01:33:12 -04:00
parent 6388d3827b
commit b3b509eabe
2 changed files with 16 additions and 0 deletions

View File

@@ -34,10 +34,12 @@
class A
{
public:
A ();
A (const std::string&, const std::string&);
~A ();
A (const A&);
A& operator= (const A&);
void clear ();
bool hasTag (const std::string&) const;
void tag (const std::string&);
void unTag (const std::string&);