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

[PL] Add explicit template instantiation for GWF.

Add a fwd include file, and a explicit template
instantiation definition in own compilation unit.

This decouples ogs.cpp from GWF process.
parent 8b511a5f
No related branches found
No related tags found
No related merge requests found
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
#include "ProcessLib/ProcessVariable.h" #include "ProcessLib/ProcessVariable.h"
#include "ProcessLib/Process.h" #include "ProcessLib/Process.h"
#include "ProcessLib/Parameter.h" #include "ProcessLib/Parameter.h"
#include "ProcessLib/GroundwaterFlowProcess-fwd.h"
namespace MeshLib { namespace MeshLib {
class Mesh; class Mesh;
......
/**
* \copyright
* Copyright (c) 2012-2015, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*
*/
#ifndef PROCESS_LIB_GROUNDWATERFLOWPROCESS_FWD_H_
#define PROCESS_LIB_GROUNDWATERFLOWPROCESS_FWD_H_
#include "GroundwaterFlowProcess.h"
#include "NumericsConfig.h"
extern template class ProcessLib::GroundwaterFlowProcess<GlobalSetupType>;
#endif // PROCESS_LIB_GROUNDWATERFLOWPROCESS_FWD_H_
/**
* \copyright
* Copyright (c) 2012-2015, OpenGeoSys Community (http://www.opengeosys.org)
* Distributed under a Modified BSD License.
* See accompanying file LICENSE.txt or
* http://www.opengeosys.org/project/license
*
*/
#include "GroundwaterFlowProcess-fwd.h"
#include "GroundwaterFlowProcess.h"
namespace ProcessLib
{
template class GroundwaterFlowProcess<GlobalSetupType>;
} // namespace ProcessLib
...@@ -42,9 +42,4 @@ protected: ...@@ -42,9 +42,4 @@ protected:
} // namespace ProcessLib } // namespace ProcessLib
//
// Include all known processes here.
//
#include "GroundwaterFlowProcess.h"
#endif // PROCESS_LIB_PROCESS_H_ #endif // PROCESS_LIB_PROCESS_H_
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