OGS
ProcessLib::SourceTermConfig Struct Referencefinal

Detailed Description

Definition at line 11 of file SourceTermConfig.h.

#include <SourceTermConfig.h>

Collaboration diagram for ProcessLib::SourceTermConfig:
[legend]

Public Member Functions

 SourceTermConfig (BaseLib::ConfigTree &&config_, MeshLib::Mesh const &mesh_, int component_id_)
 SourceTermConfig (SourceTermConfig &&other)

Public Attributes

BaseLib::ConfigTree config
MeshLib::Mesh const & mesh
int component_id

Constructor & Destructor Documentation

◆ SourceTermConfig() [1/2]

ProcessLib::SourceTermConfig::SourceTermConfig ( BaseLib::ConfigTree && config_,
MeshLib::Mesh const & mesh_,
int component_id_ )
inline

Definition at line 13 of file SourceTermConfig.h.

16 : config(std::move(config_)), mesh(mesh_), component_id(component_id_)
17 {
18 }
MeshLib::Mesh const & mesh

References component_id, config, and mesh.

Referenced by SourceTermConfig().

◆ SourceTermConfig() [2/2]

ProcessLib::SourceTermConfig::SourceTermConfig ( SourceTermConfig && other)
inline

Definition at line 20 of file SourceTermConfig.h.

21 : config(std::move(other.config)),
22 mesh(other.mesh),
23 component_id(other.component_id)
24 {
25 }

References SourceTermConfig(), component_id, config, and mesh.

Member Data Documentation

◆ component_id

int ProcessLib::SourceTermConfig::component_id

◆ config

BaseLib::ConfigTree ProcessLib::SourceTermConfig::config

◆ mesh

MeshLib::Mesh const& ProcessLib::SourceTermConfig::mesh

The documentation for this struct was generated from the following file: