]> SALOME platform Git repositories - modules/yacs.git/blobdiff - src/evalyfx/YACSEvalExecParams.hxx
Salome HOME
[EDF27816] : in case of UsingPythonCache disabled (default) all temporary variables...
[modules/yacs.git] / src / evalyfx / YACSEvalExecParams.hxx
index 1ed3229e33718586b765248fa68a3b6616b5f371..de75925046679e43a4f2d792faff6fc5ec9551c6 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2012-2016  CEA/DEN, EDF R&D
+// Copyright (C) 2012-2022  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 class YACSEvalExecParams
 {
 public:
-  YACSEVALYFX_EXPORT YACSEvalExecParams():_stopASAPAfterError(true) { }
+  YACSEVALYFX_EXPORT YACSEvalExecParams():_stopASAPAfterError(true),_fetchRemoteDirForCluster(false) { }
   YACSEVALYFX_EXPORT bool getStopASAPAfterErrorStatus() const { return _stopASAPAfterError; }
   YACSEVALYFX_EXPORT void setStopASAPAfterErrorStatus(bool newStatus) { _stopASAPAfterError=newStatus; }
+  YACSEVALYFX_EXPORT bool getFetchRemoteDirForClusterStatus() const { return _fetchRemoteDirForCluster; }
+  YACSEVALYFX_EXPORT void setFetchRemoteDirForClusterStatus(bool newStatus) { _fetchRemoteDirForCluster=newStatus; }
 private:
   bool _stopASAPAfterError;
+  bool _fetchRemoteDirForCluster;
 };
 
 #endif