]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Missing include protections.
authorOvidiu Mircescu <ovidiu.mircescu@edf.fr>
Wed, 3 Feb 2021 14:35:50 +0000 (15:35 +0100)
committerOvidiu Mircescu <ovidiu.mircescu@edf.fr>
Wed, 3 Feb 2021 14:35:50 +0000 (15:35 +0100)
src/KernelHelpers/KernelServices.hxx
src/KernelHelpers/SALOME_KernelServices.hxx
src/ModuleCatalog/KernelModuleCatalog.hxx
src/ModuleCatalog/SALOME_ModuleCatalog_impl.hxx
src/SALOMEDS/KernelDS.hxx

index 54bac046e91e1090c5ffef0ed021946b013f14c2..fc82cd29ecd6eb29e75211304871f0e340caf9e3 100644 (file)
 //
 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
-
+#ifndef __KERNELSERVICES_HXX__
+#define __KERNELSERVICES_HXX__
 #include <string>
 
 void RegisterCompoInternal(const std::string& compoName, const std::string& compoIOR);
 std::string RetrieveCompoInternal(const std::string& compoName);
+#endif
index d232b1483ec706c2937964ecfe456568c404dd90..0568d5567cbb8195dd9b798e0a34a8ea0b3920c5 100644 (file)
@@ -18,7 +18,8 @@
 //
 
 // Author: Guillaume Boulant (EDF/R&D) 
-
+#ifndef __SALOME_KERNEL_SERVICES_HXX__
+#define __SALOME_KERNEL_SERVICES_HXX__
 #pragma once
 
 #include "KernelHelpers.hxx"
@@ -101,3 +102,4 @@ namespace KERNEL {
 #include "Utils_CorbaException.hxx"
 // Tip: CORBA exceptions can be used with LOG (or more generally in streams)
 // Ex: LOG("An exception occurs: "<<e) will log the data of the exception e
+#endif //__SALOME_KERNEL_SERVICES_HXX__
index c70aef514c389622a8f8bb64c08f1e822fd2239d..45dae605cf494d370c51ca75264752db7580b41c 100644 (file)
@@ -16,7 +16,9 @@
 //
 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
-
+#ifndef __KERNEL_MODULE_CATALOG_HXX__
+#define __KERNEL_MODULE_CATALOG_HXX__
 #include <string>
 
 std::string GetModuleCatalogInstance(const std::string& listOfCatalogsGrouped);
+#endif
index fbd260b29d82db7d6427b3c019054ad5b7de20a2..aab3621780b6d5bf415648b8c7c0b5434fe4396f 100644 (file)
@@ -26,6 +26,8 @@
 //  Module : SALOME
 //  $Header$
 //
+#ifndef __SALOME_MODULECATALOG_IMPL_HXX__
+#define __SALOME_MODULECATALOG_IMPL_HXX__
 #pragma once
 
 #include "SALOME_ModuleCatalog.hxx"
@@ -145,3 +147,4 @@ private:
   CORBA::ORB_ptr _orb;
   Private* myPrivate;
 };
+#endif //__SALOME_MODULECATALOG_IMPL_HXX__
index f56aceb431e97a0a83064dc3fb6203878ca9893e..c60e72ee77e8e6cbac87d8f51a6a4215f83b25c8 100644 (file)
@@ -16,7 +16,9 @@
 //
 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
-
+#ifndef __KERNEL_DS_HXX__
+#define __KERNEL_DS_HXX__
 #include <string>
 
 std::string GetSessionInstance();
+#endif