Code Cleanup

- Added declared but unimplemented copy constructors and assignment
  operators.
This commit is contained in:
Paul Beckingham 2009-06-23 00:00:50 -04:00
parent c6a56d444e
commit e59e35ae29
9 changed files with 29 additions and 0 deletions

View file

@ -45,6 +45,9 @@ public:
Cell (const double);
Cell (const std::string&);
Cell (const Cell&);
Cell& operator= (const Cell&);
operator bool () const;
operator char () const;
operator int () const;
@ -72,6 +75,9 @@ public:
Grid ();
~Grid ();
Grid (const Grid&);
Grid& operator= (const Grid&);
void add (const unsigned int, const unsigned int, const bool);
void add (const unsigned int, const unsigned int, const char);
void add (const unsigned int, const unsigned int, const int);