Skip to content
Snippets Groups Projects
Commit 04fcca0a authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[GL] GeoObject; Drop defaulted ctors, struct.

Update dependencies.
parent 3062ad3a
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@
namespace GeoLib
{
class GeoObject;
struct GeoObject;
}
class QString;
......
......@@ -24,7 +24,7 @@ class vtkPolyDataAlgorithm;
namespace GeoLib
{
class GeoObject;
struct GeoObject;
}
/**
......
......@@ -17,7 +17,7 @@
#include <QDialog>
namespace GeoLib {
class GeoObject;
struct GeoObject;
}
class QDialogButtonBox;
......
......@@ -19,12 +19,8 @@
namespace GeoLib
{
class GeoObject
struct GeoObject
{
public:
GeoObject() = default;
GeoObject(GeoObject const&) = default;
GeoObject& operator=(GeoObject const&) = default;
virtual ~GeoObject() = default;
/// return a geometry type
virtual GEOTYPE getGeoType() const = 0;
......
......@@ -11,7 +11,7 @@
namespace GeoLib
{
class GeoObject;
struct GeoObject;
class Point;
class Polyline;
class Surface;
......
......@@ -22,7 +22,7 @@
// forward declaration
namespace GeoLib
{
class GeoObject;
struct GeoObject;
class Point;
class Polyline;
class Surface;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment