mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-09-07 21:07:20 +02:00
A3
- Added copy ctor, operator=. - Included proper handling of the _limit member.
This commit is contained in:
parent
d6dd1fe8ac
commit
100af304b7
2 changed files with 53 additions and 11 deletions
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue