[FEM] remove some unused includes

This commit is contained in:
Uwe
2022-08-02 05:15:31 +02:00
parent 360d1336b8
commit adfffb688c
6 changed files with 23 additions and 41 deletions

View File

@@ -20,16 +20,14 @@
* *
***************************************************************************/
#include "PreCompiled.h"
#ifndef _PreComp_
#endif
#include "FemResultObject.h"
#include <App/FeaturePythonPyImp.h>
#include <App/DocumentObjectPy.h>
#include "FemResultObject.h"
using namespace Fem;
using namespace App;
@@ -38,10 +36,10 @@ PROPERTY_SOURCE(Fem::FemResultObject, App::DocumentObject)
FemResultObject::FemResultObject()
{
ADD_PROPERTY_TYPE(Mesh,(nullptr), "General",Prop_None,"Link to the corresponding mesh");
ADD_PROPERTY_TYPE(NodeNumbers,(0), "NodeData",Prop_None,"Numbers of the result nodes");
ADD_PROPERTY_TYPE(Stats,(0), "Data",Prop_None,"Statistics of the results");
ADD_PROPERTY_TYPE(Time,(0), "Data",Prop_None,"Time of analysis increment");
ADD_PROPERTY_TYPE(Mesh, (nullptr), "General", Prop_None, "Link to the corresponding mesh");
ADD_PROPERTY_TYPE(NodeNumbers, (0), "NodeData", Prop_None, "Numbers of the result nodes");
ADD_PROPERTY_TYPE(Stats, (0), "Data", Prop_None, "Statistics of the results");
ADD_PROPERTY_TYPE(Time, (0), "Data", Prop_None, "Time of analysis increment");
// make read-only for property editor
NodeNumbers.setStatus(App::Property::ReadOnly, true);