Revision eff88134f876dbf966715509998b9b717ddad74e authored by Lars Bilke on 04 January 2016, 10:08:32 UTC, committed by Lars Bilke on 04 January 2016, 10:08:32 UTC
1 parent ace2bbe
Raw File
GeoObject.h
/**
 * \file
 * \author Thomas Fischer
 * \date   2010-08-27
 * \brief  Base class for classes Point, Polyline, Surface.
 * \ingroup GeoLib
 *
 * \copyright
 * Copyright (c) 2012-2015, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#ifndef GEOOBJECT_H_
#define GEOOBJECT_H_

#include "GeoType.h"

namespace GeoLib
{
class GeoObject
{
public:
	virtual ~GeoObject() = default;
	/// return a geometry type
	virtual GEOTYPE getGeoType() const = 0;
};
} // end namespace GeoLib

#endif /* GEOOBJECT_H_ */
back to top