mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-27 10:07:19 +02:00
Enhancement - Record object
- Added Record::Record (const std::string&) - Added basic unit test for Record, which currently throws.
This commit is contained in:
parent
4fda101f28
commit
7c0aee4a5f
4 changed files with 86 additions and 3 deletions
|
@ -42,6 +42,12 @@ Record::Record (const Record& other)
|
|||
*this = other;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
Record::Record (const std::string& input)
|
||||
{
|
||||
parse (input);
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
Record& Record::operator= (const Record& other)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue