Salome HOME
Sorting alphabetically.
[modules/hydro.git] / src / HYDROData / HYDROData_Tool.h
index e2306013ba25e6ee04b662125eace51d1e895a50..85824d6ef10f7cf5bec3358bf7b0ccfc0e0e8f62 100644 (file)
@@ -4,12 +4,25 @@
 
 #include <Precision.hxx>
 
+#include <QString>
 
+class QFile;
+class QStringList;
+class Handle_HYDROData_Document;
 
 class HYDROData_Tool {
 
 public:
 
+  static void                           WriteStringsToFile( QFile&             theFile,
+                                                            const QStringList& theStrings,
+                                                            const QString&     theSep = "\n" );
+
+  /**
+   * Enables "MustBeUpdated" flag for Images that are depended on "MustBeUpdated" images.
+   * \param theDoc document where this operation is performed
+   */
+  static void                           SetMustBeUpdatedImages( Handle_HYDROData_Document theDoc );
 
 };