openEMS: set verbose level method

Signed-off-by: Thorsten Liebig <Thorsten.Liebig@gmx.de>
This commit is contained in:
Thorsten Liebig 2015-12-19 15:03:17 +01:00
parent ad02096df5
commit e4ad3dba0f
2 changed files with 7 additions and 0 deletions

View File

@ -304,6 +304,11 @@ Engine_Interface_FDTD* openEMS::NewEngineInterface(int multigridlevel)
return new Engine_Interface_FDTD(FDTD_Op);
}
void openEMS::SetVerboseLevel(int level)
{
g_settings.SetVerboseLevel(level);
}
bool openEMS::SetupProcessing()
{
//*************** setup processing ************//

View File

@ -91,6 +91,8 @@ public:
Engine_Interface_FDTD* NewEngineInterface(int multigridlevel = 0);
void SetVerboseLevel(int level);
protected:
bool CylinderCoords;
std::vector<double> m_CC_MultiGrid;