OpenLexocad  27.1
PreSolver.h
Go to the documentation of this file.
1 #pragma once
2 #pragma warning(disable : 4251)
3 
4 #include <Core/DocObject.h>
5 
6 
7 namespace Core
8 {
9 class LX_CORE_EXPORT PreSolver : public Core::DocObject
10 {
13 
14 public:
15  PreSolver();
16  ;
17  virtual ~PreSolver();
18  ;
19 
20 
22  virtual bool ignoreInGraph() const { return true; }
23  bool mustbeSaved() const override { return true; }
24 };
25 
26 
27 } // namespace Core
Definition: PreSolver.h:9
Definition: Base.h:12
virtual bool ignoreInGraph() const
The object should not added to the graph.
Definition: PreSolver.h:22
bool mustbeSaved() const override
Return 'true' if this object must always be saved in the file.
Definition: PreSolver.h:23
LX_NODE_HEADER()
TYPESYSTEM_HEADER()
Definition: DocObject.h:51