diff --git a/src/columns/Column.cpp b/src/columns/Column.cpp index 1cfbbfb85..cbdc0c2a2 100644 --- a/src/columns/Column.cpp +++ b/src/columns/Column.cpp @@ -210,49 +210,6 @@ Column::Column () { } -//////////////////////////////////////////////////////////////////////////////// -Column::Column (const Column& other) -{ - _name = other._name; - _type = other._type; - _style = other._style; - _label = other._label; - _label = other._report; - _modifiable = other._modifiable; - _uda = other._uda; - _fixed_width = other._fixed_width; -} - -//////////////////////////////////////////////////////////////////////////////// -Column& Column::operator= (const Column& other) -{ - if (this != &other) - { - _name = other._name; - _type = other._type; - _style = other._style; - _label = other._label; - _report = other._report; - _modifiable = other._modifiable; - _uda = other._uda; - _fixed_width = other._fixed_width; - } - - return *this; -} - -//////////////////////////////////////////////////////////////////////////////// -bool Column::operator== (const Column& other) const -{ - return _name == other._name && - _type == other._type && - _style == other._style && - _label == other._label && - _report == other._report && - _modifiable == other._modifiable && - _uda == other._uda; -} - //////////////////////////////////////////////////////////////////////////////// Column::~Column () { diff --git a/src/columns/Column.h b/src/columns/Column.h index da6bba5be..342d9b1d9 100644 --- a/src/columns/Column.h +++ b/src/columns/Column.h @@ -41,9 +41,6 @@ public: static Column* uda (const std::string&); Column (); - Column (const Column&); - Column& operator= (const Column&); - bool operator== (const Column&) const; // TODO Is this necessary? virtual ~Column (); const std::string& name () const { return _name; }