too many EMPTY constructors
This commit is contained in:
parent
902d88fef6
commit
bf33704610
1 changed files with 2 additions and 9 deletions
|
|
@ -27,11 +27,11 @@
|
||||||
|
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
#include "utils/eoData.h" // For limits definition
|
#include <utils/eoData.h> // For limits definition
|
||||||
#include <iostream> // istream, ostream
|
#include <iostream> // istream, ostream
|
||||||
#include <string> // string
|
#include <string> // string
|
||||||
|
|
||||||
#include "utils/compatibility.h"
|
#include <utils/compatibility.h>
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
|
|
@ -47,13 +47,6 @@ interface, but it
|
||||||
class eoObject
|
class eoObject
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
/// Default Constructor.
|
|
||||||
eoObject() {}
|
|
||||||
|
|
||||||
/// Copy constructor.
|
|
||||||
eoObject( const eoObject& ) {}
|
|
||||||
|
|
||||||
/// Virtual dtor. They are needed in virtual class hierarchies.
|
/// Virtual dtor. They are needed in virtual class hierarchies.
|
||||||
virtual ~eoObject() {}
|
virtual ~eoObject() {}
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue