OGS
ProcessLib::SourceTermConfig Struct Referencefinal

Detailed Description

Definition at line 18 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 20 of file SourceTermConfig.h.

23 : config(std::move(config_)), mesh(mesh_), component_id(component_id_)
24 {
25 }
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 27 of file SourceTermConfig.h.

28 : config(std::move(other.config)),
29 mesh(other.mesh),
30 component_id(other.component_id)
31 {
32 }

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: