Skip to content
Snippets Groups Projects
Commit a4394d4b authored by Chaofan Chen's avatar Chaofan Chen
Browse files

Used forward declaration.

parent b20c9c50
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,11 @@ ...@@ -9,7 +9,11 @@
* *
*/ */
#include "BaseLib/ConfigTree.h"
#include "BaseLib/Error.h"
#include "CreateFlowAndTemperatureControl.h" #include "CreateFlowAndTemperatureControl.h"
#include "RefrigerantProperties.h"
namespace ProcessLib namespace ProcessLib
{ {
......
...@@ -11,10 +11,21 @@ ...@@ -11,10 +11,21 @@
#pragma once #pragma once
#include "BaseLib/ConfigTree.h" #include <map>
#include "BaseLib/Error.h" #include <memory>
#include <string>
#include "FlowAndTemperatureControl.h" #include "FlowAndTemperatureControl.h"
#include "RefrigerantProperties.h"
namespace BaseLib
{
class ConfigTree;
}
namespace MathLib
{
class PiecewiseLinearInterpolation;
}
namespace ProcessLib namespace ProcessLib
{ {
...@@ -22,6 +33,8 @@ namespace HeatTransportBHE ...@@ -22,6 +33,8 @@ namespace HeatTransportBHE
{ {
namespace BHE namespace BHE
{ {
class RefrigerantProperties;
FlowAndTemperatureControl createFlowAndTemperatureControl( FlowAndTemperatureControl createFlowAndTemperatureControl(
BaseLib::ConfigTree const& config, BaseLib::ConfigTree const& config,
std::map<std::string, std::map<std::string,
......
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