MeLOn
Loading...
Searching...
No Matches
modelData.h
Go to the documentation of this file.
1/**********************************************************************************
2* Copyright (c) 2020 Process Systems Engineering (AVT.SVT), RWTH Aachen University
3*
4* This program and the accompanying materials are made available under the
5* terms of the Eclipse Public License 2.0 which is available at
6* http://www.eclipse.org/legal/epl-2.0.
7*
8* SPDX-License-Identifier: EPL-2.0
9*
10* @file modelData.h
11*
12* @brief File containing declaration of the ModelData struct.
13*
14**********************************************************************************/
15
16#pragma once
17
22struct ModelData {
23// removed protected keyword for pybind
24// protected:
25 ModelData() = default;
26 virtual ~ModelData() = default;
27};
Abstract class from which specific model data object can be derived and enabling polymorphism.
Definition modelData.h:22
ModelData()=default
virtual ~ModelData()=default