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,14 +36,14 @@ Duration::Duration ()
////////////////////////////////////////////////////////////////////////////////
Duration::Duration (const Duration& other)
{
throw std::string ("unimplemented");
throw std::string ("unimplemented Duration::Duration");
mSeconds = other.mSeconds;
}
////////////////////////////////////////////////////////////////////////////////
Duration& Duration::operator= (const Duration& other)
{
throw std::string ("unimplemented");
throw std::string ("unimplemented Duration::operator=");
if (this != &other)
{
mSeconds = other.mSeconds;
@ -60,7 +60,7 @@ Duration::~Duration ()
////////////////////////////////////////////////////////////////////////////////
void Duration::parse (const std::string& input)
{
throw std::string ("unimplemented");
throw std::string ("unimplemented Duration::parse");
}
////////////////////////////////////////////////////////////////////////////////