A3
- Added copy ctor, operator=. - Included proper handling of the _limit member.
This commit is contained in:
4
src/A3.h
4
src/A3.h
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user