Revision cbb921f65f86d7e807a109accfd1d20e129dc731 authored by Lars Bilke on 06 October 2021, 11:54:42 UTC, committed by Lars Bilke on 06 October 2021, 11:54:42 UTC
[cmake] Fixed hdf5 mpi check when using CPM for hdf5.

See merge request ogs/ogs!3827
2 parent s c1f8aab + e5d2a18
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-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 */

#pragma once

#include "GeoType.h"

namespace GeoLib
{
struct GeoObject
{
    virtual ~GeoObject() = default;
    /// return a geometry type
    virtual GEOTYPE getGeoType() const = 0;
};
} // end namespace GeoLib
back to top