FF4 - Snapshot

- Objects ready for implementation.
- Removed template X.h X.cpp.
This commit is contained in:
Paul Beckingham 2009-05-16 17:50:30 -04:00
parent 69ed1e0ebb
commit 7a03d819a0
12 changed files with 47 additions and 147 deletions

View file

@ -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");
}
////////////////////////////////////////////////////////////////////////////////