- Added copy ctor, operator=.
- Included proper handling of the _limit member.
This commit is contained in:
Paul Beckingham 2011-07-30 14:22:15 -04:00
parent d6dd1fe8ac
commit 100af304b7
2 changed files with 53 additions and 11 deletions

View file

@ -84,8 +84,11 @@ class A3 : public std::vector <Arg>
{
public:
A3 ();
A3 (const A3&);
A3& operator= (const A3&);
~A3 ();
void capture (int, const char**);
void capture (const std::string&);
void capture_first (const std::string&);
@ -142,6 +145,7 @@ public:
private:
bool _read_only_command;
std::string _limit;
};
#endif