]> SALOME platform Git repositories - plugins/hybridplugin.git/commitdiff
Salome HOME
nabil tuleap23995 duc/pv590
authorDUC ANH HOANG <duc-anh-externe.hoang@edf.fr>
Wed, 10 Mar 2021 13:45:09 +0000 (14:45 +0100)
committerDUC ANH HOANG <duc-anh-externe.hoang@edf.fr>
Wed, 10 Mar 2021 13:45:09 +0000 (14:45 +0100)
src/HYBRIDPlugin/HYBRIDPlugin_HYBRID.cxx

index a773a0e1e36d7af6edf2591d71b86b012f2008cc..b6f31da6ec23b0f14303137e2cd22d60f3b493ca 100644 (file)
@@ -70,6 +70,7 @@
 #include <Basics_Utils.hxx>
 #include <utilities.h>
 
+#include <fstream>
 #include <algorithm>
 
 #define castToNode(n) static_cast<const SMDS_MeshNode *>( n );
@@ -815,7 +816,7 @@ static bool readGMFFile(MG_HYBRID_API*                          MGOutput,
   std::map<int, std::set<int> >::const_iterator subdomainIt = subdomainId2tetraId.begin();
   std::string aSubdomainFileName = theFile;
   aSubdomainFileName = aSubdomainFileName + ".subdomain";
-  ofstream aSubdomainFile  ( aSubdomainFileName  , ios::out);
+  std::ofstream aSubdomainFile  ( aSubdomainFileName  , ios::out);
 
   aSubdomainFile << "Nb subdomains " << subdomainId2tetraId.size() << std::endl;
   for(;subdomainIt != subdomainId2tetraId.end() ; ++subdomainIt) {
@@ -1489,7 +1490,7 @@ bool HYBRIDPlugin_HYBRID::Compute(SMESH_Mesh&         theMesh,
   // Write aSmdsToHybridIdMap to temp file
   std::string aSmdsToHybridIdMapFileName;
   aSmdsToHybridIdMapFileName = aGenericName + ".ids";  // ids relation
-  ofstream aIdsFile  ( aSmdsToHybridIdMapFileName  , ios::out);
+  std::ofstream aIdsFile  ( aSmdsToHybridIdMapFileName  , ios::out);
   Ok = aIdsFile.rdbuf()->is_open();
   if (!Ok) {
     INFOS( "Can't write into " << aSmdsToHybridIdMapFileName);