mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-28 04:27:20 +02:00
Code Cleanup
- Added declared but unimplemented copy constructors and assignment operators.
This commit is contained in:
parent
c6a56d444e
commit
e59e35ae29
9 changed files with 29 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue