Salome HOME
Merge from OCC_development_generic_2006
[modules/visu.git] / src / CONVERTOR / VISU_ConvertorUtils.hxx
index 1ef42e369fbc1cee2e3853422c01a081b4536af6..154589fc7d89ee0002ba2dfcf32858da1501de80 100644 (file)
 #include "MED_Utilities.hxx"
 
 class vtkUnstructuredGrid;
+class vtkTimerLog;
+
+namespace MED
+{
+  class PrefixPrinter;
+}
 
 namespace VISU{
 
   void 
   WriteToFile(vtkUnstructuredGrid* theDataSet, const std::string& theFileName);
+
+  class TTimerLog
+  {
+    int myIsDebug;
+    double myCPUTime;
+    std::string myName;
+    vtkTimerLog* myTimerLog;
+    MED::PrefixPrinter myPrefixPrinter;
+  public:
+    TTimerLog(int theIsDebug,
+             const std::string& theName);
+    ~TTimerLog();
+  };
   
 }