MeLOn
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 
22 struct ModelData {
23 // removed protected keyword for pybind
24 // protected:
25  ModelData() = default;
26  virtual ~ModelData() = default;
27 };
ModelData::ModelData
ModelData()=default
ModelData::~ModelData
virtual ~ModelData()=default
ModelData
Abstract class from which specific model data object can be derived and enabling polymorphism.
Definition: modelData.h:22