FF4 - Snapshot

This commit is contained in:
Paul Beckingham 2009-05-22 20:12:10 -04:00
parent e754fa6eac
commit eb5bd63459
2 changed files with 0 additions and 10 deletions

View file

@ -33,15 +33,6 @@ T::T ()
{
}
////////////////////////////////////////////////////////////////////////////////
/*
T::T (const T& other)
{
throw std::string ("unimplemented T::T");
// mOne = other.mOne;
}
*/
////////////////////////////////////////////////////////////////////////////////
T::T (const std::string& input)
{

View file

@ -34,7 +34,6 @@ class T : public Record
{
public:
T (); // Default constructor
// T (const T&); // Copy constructor
T (const std::string&); // Parse
T& operator= (const T&); // Assignment operator
~T (); // Destructor