Skip to content
Snippets Groups Projects
Commit 00c7d047 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[PaL] Fix doxygen prj-tags docu placement.

parent 3daec773
No related branches found
No related tags found
No related merge requests found
......@@ -23,8 +23,8 @@ std::unique_ptr<ParameterBase> createGroupBasedParameter(
config.checkConfigParameter("type", "Group");
// get a property vector of group IDs
//! \ogs_file_param{prj__parameters__parameter__Group__group_id_property}
std::string const group_id_property_name =
//! \ogs_file_param{prj__parameters__parameter__Group__group_id_property}
config.getConfigParameter<std::string>("group_id_property");
DBUG("Using group_id_property %s", group_id_property_name.c_str());
......
......@@ -19,8 +19,8 @@ std::unique_ptr<ParameterBase> createMeshElementParameter(
{
//! \ogs_file_param{prj__parameters__parameter__type}
config.checkConfigParameter("type", "MeshElement");
//! \ogs_file_param{prj__parameters__parameter__MeshElement__field_name}
auto const field_name =
//! \ogs_file_param{prj__parameters__parameter__MeshElement__field_name}
config.getConfigParameter<std::string>("field_name");
DBUG("Using field_name %s", field_name.c_str());
......
......@@ -19,8 +19,8 @@ std::unique_ptr<ParameterBase> createMeshNodeParameter(
{
//! \ogs_file_param{prj__parameters__parameter__type}
config.checkConfigParameter("type", "MeshNode");
//! \ogs_file_param{prj__parameters__parameter__MeshNode__field_name}
auto const field_name =
//! \ogs_file_param{prj__parameters__parameter__MeshNode__field_name}
config.getConfigParameter<std::string>("field_name");
DBUG("Using field_name %s", field_name.c_str());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment