mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
CLI
- Converted from std::string to A.
This commit is contained in:
parent
854dc08615
commit
6388d3827b
2 changed files with 37 additions and 25 deletions
|
@ -44,7 +44,7 @@ public:
|
|||
void attribute (const std::string&, const std::string&);
|
||||
void attribute (const std::string&, const int);
|
||||
void attribute (const std::string&, const double);
|
||||
const std::string attribute (const std::string&);
|
||||
const std::string attribute (const std::string&) const;
|
||||
void removeAttribute (const std::string&);
|
||||
const std::string dump () const;
|
||||
|
||||
|
@ -87,8 +87,8 @@ public:
|
|||
std::map <std::string, std::string> _overrides;
|
||||
std::string _command;
|
||||
bool _readOnly;
|
||||
std::vector <std::string> _filter;
|
||||
std::vector <std::string> _modifications;
|
||||
std::vector <A> _filter;
|
||||
std::vector <A> _modifications;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue