mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
FF4 - Snapshot
- Objects ready for implementation. - Removed template X.h X.cpp.
This commit is contained in:
parent
69ed1e0ebb
commit
7a03d819a0
12 changed files with 47 additions and 147 deletions
|
@ -35,14 +35,14 @@ Record::Record ()
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
Record::Record (const Record& other)
|
||||
{
|
||||
throw std::string ("unimplemented");
|
||||
throw std::string ("unimplemented Record::Record");
|
||||
mAtts = other.mAtts;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
Record& Record::operator= (const Record& other)
|
||||
{
|
||||
throw std::string ("unimplemented");
|
||||
throw std::string ("unimplemented Record:operator=");
|
||||
if (this != &other)
|
||||
{
|
||||
mAtts = other.mAtts;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue