mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-06 19:28:34 +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
|
@ -36,20 +36,20 @@ T::T ()
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
T::T (const T& other)
|
||||
{
|
||||
throw std::string ("unimplemented");
|
||||
throw std::string ("unimplemented T::T");
|
||||
// mOne = other.mOne;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
T::T (const std::string& input)
|
||||
{
|
||||
throw std::string ("unimplemented");
|
||||
throw std::string ("unimplemented T::T");
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
T& T::operator= (const T& other)
|
||||
{
|
||||
throw std::string ("unimplemented");
|
||||
throw std::string ("unimplemented T::operator=");
|
||||
if (this != &other)
|
||||
{
|
||||
// mOne = other.mOne;
|
||||
|
@ -66,21 +66,21 @@ T::~T ()
|
|||
////////////////////////////////////////////////////////////////////////////////
|
||||
std::string T::composeF4 ()
|
||||
{
|
||||
throw std::string ("unimplemented");
|
||||
throw std::string ("unimplemented T::composeF4");
|
||||
return "";
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
std::string T::composeCSV ()
|
||||
{
|
||||
throw std::string ("unimplemented");
|
||||
throw std::string ("unimplemented T::composeCSV");
|
||||
return "";
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
void T::parse (const std::string& input)
|
||||
{
|
||||
throw std::string ("unimplemented");
|
||||
throw std::string ("unimplemented T::parse");
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue