Salome HOME
add method NameChanged to update title name
[modules/kernel.git] / src / ResourcesManager / ResourcesManager.hxx
old mode 100755 (executable)
new mode 100644 (file)
index eaa6eaa..1f140f4
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
 //
 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
@@ -66,14 +66,6 @@ struct RESOURCESMANAGER_EXPORT resourceParams
   std::vector<std::string> resourceList;
 };
 
-class RESOURCESMANAGER_EXPORT ResourcesException
-{
-public:
-  const std::string msg;
-
-  ResourcesException(const std::string m) : msg(m) {}
-};
-
 class RESOURCESMANAGER_EXPORT ResourcesManager_cpp
   {
 
@@ -87,8 +79,7 @@ class RESOURCESMANAGER_EXPORT ResourcesManager_cpp
     std::vector<std::string> 
     GetFittingResources(const resourceParams& params) throw(ResourcesException);
 
-    std::string Find(const std::string& policy, 
-                     const std::vector<std::string>& listOfResources);
+    std::string Find(const std::string& policy, const std::vector<std::string>& listOfResources) const;
 
     void AddResourceInCatalog (const ParserResourcesType & new_resource);
 
@@ -100,7 +91,8 @@ class RESOURCESMANAGER_EXPORT ResourcesManager_cpp
 
     const MapOfParserResourcesType& GetList() const;
 
-    ParserResourcesType GetResourcesDescr(const std::string & name);
+    //! thread safe
+    ParserResourcesType GetResourcesDescr(const std::string & name) const;
 
   protected: