Salome HOME
Undef max Visual Studio definition.
[modules/hexablock.git] / src / HEXABLOCK / HexDumpStudy.hxx
index 6067dbbdcc6474cd5057f89c13e9f0c06ba5ef7b..f0e6a547a53a0869561217e0e92f9092a1c34fd3 100755 (executable)
 // License along with this library; if not, write to the Free Software
 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
-//
+// See http://www.salome-platform.org/ 
+// or email : webmaster.salome@opencascade.com
 
 #ifndef __DUMP_STUDY_H_
 #define __DUMP_STUDY_H_
 
+#include "Hex_defines.hxx"
 #include "hexa_base.hxx"
 #include <map>
 
+#if defined WIN32
+#pragma warning ( disable: 4251 )
+#endif
+
+
 BEGIN_NAMESPACE_HEXA
 
 
+#define DumpStart0(p) bool actif=el_root->glob->dump.start(this, p)
 #define DumpStart(p,args) bool actif=el_root->glob->dump.start(this, p); if (actif)  el_root->glob->dump << args
 #define DumpEnd       el_root->glob->dump.close (actif)
 #define DumpReturn(v) el_root->glob->dump.close (actif,v)
@@ -36,10 +43,12 @@ BEGIN_NAMESPACE_HEXA
 #define DumpLock    bool actif=el_root->glob->dump.lock ()
 #define DumpRestore            el_root->glob->dump.restore (actif)
 
-class DumpStudy
+class Witness;
+class HEXABLOCKENGINE_EXPORT DumpStudy
 {
 public :
     DumpStudy ();
+    void setWitness (Witness* temoin)       { witness = temoin ; }
 
     DumpStudy& operator << (int      val);
     DumpStudy& operator << (double   val);
@@ -51,12 +60,15 @@ public :
     DumpStudy& operator << (RealVector& elt);
 
     bool start (EltBase* obj, cpchar method);
-    bool start (cpchar   obj, cpchar method);
+    bool start (cpchar   obj, cpchar method, bool razmess=true);
     void close (bool reactive);
     void close (bool reactive, EltBase* retour);
+    void close (bool reactive, int      retour);
+    void close (bool reactive, double   retour);
 
     bool lock ();
-    void restore (bool reactive);
+    void restore  (bool reactive);
+    void getBegin (string& begin);
 
 private :
    cpchar findName   (EltBase* elt);
@@ -76,12 +88,13 @@ private :
    string curr_vector;
    int    nbr_values;
 
-   FILE*  fic_dump;
-   string this_name;
-   string right_part;
-   bool   is_open;
-   int    nbr_nulls;
-   int    nbr_args;
+   FILE*    fic_dump;
+   string   this_name;
+   string   right_part;
+   bool     is_open;
+   int      nbr_nulls;
+   int      nbr_args;
+   Witness* witness;
 };
 END_NAMESPACE_HEXA
 #endif