FF4 - snapshot

This commit is contained in:
Paul Beckingham 2009-05-17 23:31:25 -04:00
parent 04f60a4d8c
commit 3a9c98d342
11 changed files with 127 additions and 30 deletions

View file

@ -34,11 +34,13 @@ T::T ()
}
////////////////////////////////////////////////////////////////////////////////
/*
T::T (const T& other)
{
throw std::string ("unimplemented T::T");
// mOne = other.mOne;
}
*/
////////////////////////////////////////////////////////////////////////////////
T::T (const std::string& input)
@ -78,9 +80,3 @@ std::string T::composeCSV ()
}
////////////////////////////////////////////////////////////////////////////////
void T::parse (const std::string& input)
{
throw std::string ("unimplemented T::parse");
}
////////////////////////////////////////////////////////////////////////////////