From 54110996833170eed5e6abb402c2eca254d76413 Mon Sep 17 00:00:00 2001 From: Yuri Victorovich Date: Tue, 4 Jul 2023 02:07:11 -0700 Subject: [PATCH] science/salome-kernel: New port: Salome Project: Multi-physics simulations: Kernel --- science/Makefile | 1 + science/salome-kernel/Makefile | 60 + science/salome-kernel/distinfo | 3 + .../patch-src_Container_Component__i.cxx | 68 ++ ...src_Container_SALOME__ContainerManager.cxx | 11 + ..._DSC_DSC__User_Datastream_Calcium_fortoc.h | 11 + ...auncher_SALOME__ExternalServerLauncher.cxx | 20 + ...h-src_SALOMEDSImpl_SALOMEDSImpl__Study.cxx | 20 + science/salome-kernel/pkg-descr | 4 + science/salome-kernel/pkg-plist | 1029 +++++++++++++++++ 10 files changed, 1227 insertions(+) create mode 100644 science/salome-kernel/Makefile create mode 100644 science/salome-kernel/distinfo create mode 100644 science/salome-kernel/files/patch-src_Container_Component__i.cxx create mode 100644 science/salome-kernel/files/patch-src_Container_SALOME__ContainerManager.cxx create mode 100644 science/salome-kernel/files/patch-src_DSC_DSC__User_Datastream_Calcium_fortoc.h create mode 100644 science/salome-kernel/files/patch-src_Launcher_SALOME__ExternalServerLauncher.cxx create mode 100644 science/salome-kernel/files/patch-src_SALOMEDSImpl_SALOMEDSImpl__Study.cxx create mode 100644 science/salome-kernel/pkg-descr create mode 100644 science/salome-kernel/pkg-plist diff --git a/science/Makefile b/science/Makefile index 7ea5da152274..8ec7b1043716 100644 --- a/science/Makefile +++ b/science/Makefile @@ -462,6 +462,7 @@ SUBDIR += rubygem-rgeo-shapefile SUBDIR += rubygem-ruby-netcdf SUBDIR += salome-configuration + SUBDIR += salome-kernel SUBDIR += scidavis SUBDIR += sciplot SUBDIR += segyio diff --git a/science/salome-kernel/Makefile b/science/salome-kernel/Makefile new file mode 100644 index 000000000000..134403d43687 --- /dev/null +++ b/science/salome-kernel/Makefile @@ -0,0 +1,60 @@ +PORTNAME= salome-kernel +DISTVERSIONPREFIX= V +DISTVERSION= 9_11_0 +CATEGORIES= science + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Salome Project: Multi-physics simulations: Kernel +WWW= https://www.salome-platform.org/ + +LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/COPYING + +FETCH_DEPENDS= git:devel/git +PY_DEPENDS= ${PYNUMPY} \ + ${PYTHON_PKGNAMEPREFIX}omniorb>0:devel/py-omniorb \ + ${PYTHON_PKGNAMEPREFIX}psutil>0:sysutils/py-psutil@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR} +BUILD_DEPENDS= salome-configuration>0:science/salome-configuration \ + swig:devel/swig \ + ${PY_DEPENDS} +LIB_DEPENDS= libboost_filesystem.so:devel/boost-libs \ + libhdf5.so:science/hdf5 \ + libomniORB4.so:devel/omniORB +RUN_DEPENDS= bash:shells/bash \ + ${PY_DEPENDS} + +USES= cmake compiler:c++11-lang gnome python shebangfix +USE_GNOME= libxml2 +USE_LDCONFIG= yes + +SHEBANG_GLOB= *.py *.sh +SHEBANG_FILES= bin/appliskel/salome \ + bin/appliskel/salome_mesa \ + bin/appliskel/.salome_run \ + bin/appliskel/.bashrc + +GIT_URL= https://git.salome-platform.org/gitpub/modules/kernel # all Salome repositories: https://git.salome-platform.org/gitweb/ + +CMAKE_ARGS= -DCONFIGURATION_ROOT_DIR=${LOCALBASE}/share/salome/configuration \ + -DOMNIORBPY_ROOT_DIR=${LOCALBASE} \ + -DPython_EXECUTABLE=${PYTHON_CMD} +CMAKE_OFF= SALOME_BUILD_TESTS SALOME_BUILD_DOC +CFLAGS+= -DSIZEOF_INT=4 -DSIZEOF_LONG=4 +LDFLAGS+= -lexecinfo + +DATADIR= ${PREFIX}/share/salome + +do-fetch: + @if [ "${FORCE_FETCH_ALL}" = "true" ] || ! [ -f "${DISTDIR}/${DIST_SUBDIR}/${DISTNAME}${EXTRACT_SUFX}" ]; then \ + ${MKDIR} ${DISTDIR}/${DIST_SUBDIR} && \ + cd ${DISTDIR}/${DIST_SUBDIR} && \ + git clone -q ${GIT_URL} ${PORTNAME}-${DISTVERSIONFULL} && \ + (cd ${PORTNAME}-${DISTVERSIONFULL} && git reset -q --hard ${DISTVERSIONFULL} && ${RM} -r .git) && \ + ${FIND} ${PORTNAME}-${DISTVERSIONFULL} -and -exec ${TOUCH} -h -d 1970-01-01T00:00:00Z {} \; && \ + ${FIND} ${PORTNAME}-${DISTVERSIONFULL} -print0 | LC_ALL=C ${SORT} -z | \ + ${TAR} czf ${PORTNAME}-${DISTVERSIONFULL}${EXTRACT_SUFX} --format=bsdtar --gid 0 --uid 0 --options gzip:!timestamp --no-recursion --null -T - && \ + ${RM} -r ${PORTNAME}-${DISTVERSIONFULL}; \ + fi + +.include diff --git a/science/salome-kernel/distinfo b/science/salome-kernel/distinfo new file mode 100644 index 000000000000..91a1299e3225 --- /dev/null +++ b/science/salome-kernel/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1688418727 +SHA256 (salome-kernel-V9_11_0.tar.gz) = ab1ba2be6f48adc97497266f2b6db3b6878aceb8ce8732e496130bc4924ccb3d +SIZE (salome-kernel-V9_11_0.tar.gz) = 3435113 diff --git a/science/salome-kernel/files/patch-src_Container_Component__i.cxx b/science/salome-kernel/files/patch-src_Container_Component__i.cxx new file mode 100644 index 000000000000..8053b839cb91 --- /dev/null +++ b/science/salome-kernel/files/patch-src_Container_Component__i.cxx @@ -0,0 +1,68 @@ +--- src/Container/Component_i.cxx.orig 2023-07-03 21:26:28 UTC ++++ src/Container/Component_i.cxx +@@ -401,14 +401,14 @@ bool Engines_Component_i::Kill_impl() + + bool RetVal = false ; + #ifndef WIN32 +- if ( _ThreadId > 0 && pthread_self() != _ThreadId ) ++ if ( _ThreadId && pthread_self() != _ThreadId ) + { + RetVal = Killer( _ThreadId , SIGUSR2 ) ; + _ThreadId = (pthread_t ) -1 ; + } + + #else +- if ( _ThreadId > 0 && pthread_self().p != _ThreadId->p ) ++ if ( _ThreadId && pthread_self().p != _ThreadId->p ) + { + RetVal = Killer( *_ThreadId , 0 ) ; + _ThreadId = (pthread_t* ) 0 ; +@@ -443,13 +443,13 @@ bool Engines_Component_i::Stop_impl() + + bool RetVal = false ; + #ifndef WIN32 +- if ( _ThreadId > 0 && pthread_self() != _ThreadId ) ++ if ( _ThreadId && pthread_self() != _ThreadId ) + { + RetVal = Killer( _ThreadId , 0 ) ; + _ThreadId = (pthread_t ) -1 ; + } + #else +- if ( _ThreadId > 0 && pthread_self().p != _ThreadId->p ) ++ if ( _ThreadId && pthread_self().p != _ThreadId->p ) + { + RetVal = Killer( *_ThreadId , 0 ) ; + _ThreadId = (pthread_t* ) 0 ; +@@ -482,9 +482,9 @@ bool Engines_Component_i::Suspend_impl() + + bool RetVal = false ; + #ifndef WIN32 +- if ( _ThreadId > 0 && pthread_self() != _ThreadId ) ++ if ( _ThreadId && pthread_self() != _ThreadId ) + #else +- if ( _ThreadId > 0 && pthread_self().p != _ThreadId->p ) ++ if ( _ThreadId && pthread_self().p != _ThreadId->p ) + #endif + { + if ( _Sleeping ) +@@ -528,9 +528,9 @@ bool Engines_Component_i::Resume_impl() + #endif + bool RetVal = false ; + #ifndef WIN32 +- if ( _ThreadId > 0 && pthread_self() != _ThreadId ) ++ if ( _ThreadId && pthread_self() != _ThreadId ) + #else +- if ( _ThreadId > 0 && pthread_self().p != _ThreadId->p ) ++ if ( _ThreadId && pthread_self().p != _ThreadId->p ) + #endif + { + if ( _Sleeping ) +@@ -557,7 +557,7 @@ CORBA::Long Engines_Component_i::CpuUsed_impl() + long cpu = 0 ; + if ( _ThreadId || _Executed ) + { +- if ( _ThreadId > 0 ) ++ if ( _ThreadId ) + { + #ifndef WIN32 + if ( pthread_self() != _ThreadId ) diff --git a/science/salome-kernel/files/patch-src_Container_SALOME__ContainerManager.cxx b/science/salome-kernel/files/patch-src_Container_SALOME__ContainerManager.cxx new file mode 100644 index 000000000000..28b2b5d48215 --- /dev/null +++ b/science/salome-kernel/files/patch-src_Container_SALOME__ContainerManager.cxx @@ -0,0 +1,11 @@ +--- src/Container/SALOME_ContainerManager.cxx.orig 2023-07-03 21:24:41 UTC ++++ src/Container/SALOME_ContainerManager.cxx +@@ -64,6 +64,8 @@ + #include "PaCOPP.hxx" + #endif + ++#include // for WEXITSTATUS ++ + const int SALOME_ContainerManager::TIME_OUT_TO_LAUNCH_CONT=60; + + const char *SALOME_ContainerManager::_ContainerManagerNameInNS = diff --git a/science/salome-kernel/files/patch-src_DSC_DSC__User_Datastream_Calcium_fortoc.h b/science/salome-kernel/files/patch-src_DSC_DSC__User_Datastream_Calcium_fortoc.h new file mode 100644 index 000000000000..39666a7134ad --- /dev/null +++ b/science/salome-kernel/files/patch-src_DSC_DSC__User_Datastream_Calcium_fortoc.h @@ -0,0 +1,11 @@ +--- src/DSC/DSC_User/Datastream/Calcium/fortoc.h.orig 2023-07-03 21:45:58 UTC ++++ src/DSC/DSC_User/Datastream/Calcium/fortoc.h +@@ -23,7 +23,7 @@ + /* Operateur de concatenation */ + #define _(A,B) A##B + +-#if defined __linux || defined __APPLE__ ++#if defined __linux || defined __FreeBSD__ || defined __APPLE__ + #define F_FUNC(lname,uname) _(lname,_) /* Fortran function name */ + #define F_CALL(lname,uname) _(lname,_) /* Fortran function call */ + #define STR_PSTR(str) char *str /* fortran string arg pointer */ diff --git a/science/salome-kernel/files/patch-src_Launcher_SALOME__ExternalServerLauncher.cxx b/science/salome-kernel/files/patch-src_Launcher_SALOME__ExternalServerLauncher.cxx new file mode 100644 index 000000000000..1523474a5096 --- /dev/null +++ b/science/salome-kernel/files/patch-src_Launcher_SALOME__ExternalServerLauncher.cxx @@ -0,0 +1,20 @@ +--- src/Launcher/SALOME_ExternalServerLauncher.cxx.orig 2023-07-03 21:31:03 UTC ++++ src/Launcher/SALOME_ExternalServerLauncher.cxx +@@ -40,6 +40,8 @@ + #include + #include + ++#include ++ + const char SALOME_ExternalServerLauncher::NAME_IN_NS[]="/ExternalServers"; + + unsigned SALOME_ExternalServerLauncher::CNT = 0; +@@ -62,7 +64,7 @@ class ChdirRAII + { + public: + #ifndef WIN32 +- ChdirRAII(const std::string& wd):_wd(wd) { if(_wd.empty()) return ; char *pwd(get_current_dir_name()); _od = pwd; free(pwd); chdir(_wd.c_str()); } ++ ChdirRAII(const std::string& wd):_wd(wd) { if(_wd.empty()) return ; char wd_[MAXPATHLEN]; getcwd(wd_, MAXPATHLEN); _od = wd_; chdir(_wd.c_str()); } + ~ChdirRAII() { if(_od.empty()) return ; chdir(_od.c_str()); } + #else + ChdirRAII(const std::string& wd) : _wd(wd) { diff --git a/science/salome-kernel/files/patch-src_SALOMEDSImpl_SALOMEDSImpl__Study.cxx b/science/salome-kernel/files/patch-src_SALOMEDSImpl_SALOMEDSImpl__Study.cxx new file mode 100644 index 000000000000..240b4bbc288b --- /dev/null +++ b/science/salome-kernel/files/patch-src_SALOMEDSImpl_SALOMEDSImpl__Study.cxx @@ -0,0 +1,20 @@ +--- src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx.orig 2023-07-03 21:36:43 UTC ++++ src/SALOMEDSImpl/SALOMEDSImpl_Study.cxx +@@ -212,7 +212,7 @@ bool SALOMEDSImpl_Study::Open(const std::string& aUrl) + isASCII = true; + char* aResultPath = HDFascii::ConvertFromASCIIToHDF(aUrl.c_str()); + if ( !aResultPath ) +- return NULL; ++ return false; + aC_HDFUrl = new char[strlen(aResultPath) + 19]; + sprintf(aC_HDFUrl, "%shdf_from_ascii.hdf", aResultPath); + delete [] (aResultPath); +@@ -234,7 +234,7 @@ bool SALOMEDSImpl_Study::Open(const std::string& aUrl) + sprintf(eStr,"Can't open file %s",aUrl.c_str()); + delete [] eStr; + _errorCode = std::string(eStr); +- return NULL; ++ return false; + } + + // Assign the value of the URL in the study object diff --git a/science/salome-kernel/pkg-descr b/science/salome-kernel/pkg-descr new file mode 100644 index 000000000000..b803e0ef394a --- /dev/null +++ b/science/salome-kernel/pkg-descr @@ -0,0 +1,4 @@ +Kernel of the Salome project. + +SALOME is an open-source software that provides a generic Pre- and +Post-Processing platform for numerical simulation. diff --git a/science/salome-kernel/pkg-plist b/science/salome-kernel/pkg-plist new file mode 100644 index 000000000000..d714e8935d5c --- /dev/null +++ b/science/salome-kernel/pkg-plist @@ -0,0 +1,1029 @@ +bin/salome/ArgvKeeper.py +bin/salome/IDLparser.py +bin/salome/KernelBasis.py +bin/salome/KernelContainer.py +bin/salome/KernelDS.py +bin/salome/KernelHelpersUseCases +bin/salome/KernelLauncher.py +bin/salome/KernelLogger.py +bin/salome/KernelModuleCatalog.py +bin/salome/KernelSDS.py +bin/salome/KernelServices.py +bin/salome/LifeCycleCORBA.py +bin/salome/NSparam.py +bin/salome/NamingService.py +bin/salome/ORBConfigFile.py +bin/salome/PortManager.py +bin/salome/SALOMEDS_Client +bin/salome/SALOMEDS_Server +bin/salome/SALOMEWrappedStdType.py +bin/salome/SALOME_ComponentPy.py +bin/salome/SALOME_ConnectionManagerServer +bin/salome/SALOME_Container +bin/salome/SALOME_Container.py +bin/salome/SALOME_ContainerPy.py +bin/salome/SALOME_Container_No_NS_Serv +bin/salome/SALOME_DataScopeServer +bin/salome/SALOME_DataScopeServer_SSL +bin/salome/SALOME_DriverPy.py +bin/salome/SALOME_Embedded_NamingService.py +bin/salome/SALOME_Embedded_NamingService_ClientPy.py +bin/salome/SALOME_LauncherServer +bin/salome/SALOME_Logger_Server +bin/salome/SALOME_ModuleCatalog_Client +bin/salome/SALOME_ModuleCatalog_Server +bin/salome/SALOME_NamingServicePy.py +bin/salome/SALOME_PyNode.py +bin/salome/SALOME_Registry_Server +bin/salome/SALOME_TestComponentPy.py +bin/salome/SALOME_Trace.py +bin/salome/SALOME_utilities.py +bin/salome/SalomeOnDemandTK/__init__.py +bin/salome/SalomeOnDemandTK/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/SalomeOnDemandTK/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/SalomeOnDemandTK/__pycache__/extension_builder%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/SalomeOnDemandTK/__pycache__/extension_builder%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/SalomeOnDemandTK/__pycache__/extension_query%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/SalomeOnDemandTK/__pycache__/extension_query%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/SalomeOnDemandTK/__pycache__/extension_remover%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/SalomeOnDemandTK/__pycache__/extension_remover%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/SalomeOnDemandTK/__pycache__/extension_unpacker%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/SalomeOnDemandTK/__pycache__/extension_unpacker%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/SalomeOnDemandTK/__pycache__/extension_utilities%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/SalomeOnDemandTK/__pycache__/extension_utilities%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/SalomeOnDemandTK/extension_builder.py +bin/salome/SalomeOnDemandTK/extension_query.py +bin/salome/SalomeOnDemandTK/extension_remover.py +bin/salome/SalomeOnDemandTK/extension_unpacker.py +bin/salome/SalomeOnDemandTK/extension_utilities.py +bin/salome/SalomeSDSClt.py +bin/salome/TestComponentPy.py +bin/salome/TestContainer +bin/salome/TestContainerManager +bin/salome/TestLauncher +bin/salome/TestLifeCycleCORBA.py +bin/salome/TestLogger +bin/salome/TestLogger.py +bin/salome/TestModuleCatalog.py +bin/salome/Test_LifeCycleCORBA +bin/salome/Utils_Identity.py +bin/salome/VERSION +bin/salome/__pycache__/ArgvKeeper%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/ArgvKeeper%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/IDLparser%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/IDLparser%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/KernelBasis%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/KernelBasis%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/KernelContainer%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/KernelContainer%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/KernelDS%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/KernelDS%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/KernelLauncher%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/KernelLauncher%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/KernelLogger%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/KernelLogger%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/KernelModuleCatalog%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/KernelModuleCatalog%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/KernelSDS%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/KernelSDS%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/KernelServices%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/KernelServices%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/LifeCycleCORBA%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/LifeCycleCORBA%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/NSparam%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/NSparam%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/NamingService%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/NamingService%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/ORBConfigFile%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/ORBConfigFile%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/PortManager%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/PortManager%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/SALOME_ComponentPy%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/SALOME_ComponentPy%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/SALOME_Container%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/SALOME_Container%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/SALOME_ContainerPy%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/SALOME_ContainerPy%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/SALOME_DriverPy%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/SALOME_DriverPy%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/SALOME_Embedded_NamingService%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/SALOME_Embedded_NamingService%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/SALOME_Embedded_NamingService_ClientPy%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/SALOME_Embedded_NamingService_ClientPy%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/SALOME_NamingServicePy%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/SALOME_NamingServicePy%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/SALOME_PyNode%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/SALOME_PyNode%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/SALOME_TestComponentPy%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/SALOME_TestComponentPy%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/SALOME_Trace%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/SALOME_Trace%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/SALOME_utilities%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/SALOME_utilities%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/TestComponentPy%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/TestComponentPy%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/TestLifeCycleCORBA%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/TestLifeCycleCORBA%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/TestLogger%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/TestLogger%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/TestModuleCatalog%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/TestModuleCatalog%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/Utils_Identity%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/Utils_Identity%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/addToKillList%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/addToKillList%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/app-quickstart%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/app-quickstart%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/appli_gen%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/appli_gen%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/envSalome%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/envSalome%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/killSalome%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/killSalome%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/killSalomeWithPort%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/killSalomeWithPort%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/launchConfigureParser%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/launchConfigureParser%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/nameserver%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/nameserver%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/orbmodule%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/orbmodule%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/parseConfigFile%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/parseConfigFile%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/prepare_generating_doc%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/prepare_generating_doc%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/pythonpath_reduction%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/pythonpath_reduction%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/runConsole%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/runConsole%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/runRemote%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/runRemote%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/runSalome%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/runSalome%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/runSalomeCommon%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/runSalomeCommon%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/runSalomeNoServer%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/runSalomeNoServer%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/runSalomeOld%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/runSalomeOld%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/runSalomeOnDemand%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/runSalomeOnDemand%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/runSession%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/runSession%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/runTests%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/runTests%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/salomeContext%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/salomeContext%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/salomeContextUtils%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/salomeContextUtils%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/salome_instance%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/salome_instance%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/salome_utils%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/salome_utils%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/searchFreePort%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/searchFreePort%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/server%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/server%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/setenv%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/setenv%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/showNS%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/showNS%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/virtual_salome%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/virtual_salome%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/waitContainers%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/waitContainers%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/__pycache__/waitNS%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/__pycache__/waitNS%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/addToKillList.py +bin/salome/app-quickstart.py +bin/salome/appli_clean.sh +bin/salome/appli_gen.py +bin/salome/appliskel/.bashrc +bin/salome/appliskel/.salome-completion.sh +bin/salome/appliskel/.salome_run +bin/salome/appliskel/__pycache__/getAppliPath%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/appliskel/__pycache__/getAppliPath%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/appliskel/__pycache__/kill_remote_containers%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/appliskel/__pycache__/kill_remote_containers%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/appliskel/__pycache__/python_test_driver%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/appliskel/__pycache__/python_test_driver%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/appliskel/__pycache__/salome_common%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/appliskel/__pycache__/salome_common%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/appliskel/__pycache__/salome_starter%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/appliskel/__pycache__/salome_starter%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/appliskel/__pycache__/salome_test_driver%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/appliskel/__pycache__/salome_test_driver%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/appliskel/__pycache__/salome_test_driver_gui%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/appliskel/__pycache__/salome_test_driver_gui%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/appliskel/__pycache__/update_catalogs%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +bin/salome/appliskel/__pycache__/update_catalogs%%PYTHON_EXT_SUFFIX%%.pyc +bin/salome/appliskel/envd +bin/salome/appliskel/getAppliPath.py +bin/salome/appliskel/kill_remote_containers.py +bin/salome/appliskel/python_test_driver.py +bin/salome/appliskel/runRemote.sh +bin/salome/appliskel/runRemoteSSL.sh +bin/salome/appliskel/salome +bin/salome/appliskel/salome_common.py +bin/salome/appliskel/salome_mesa +bin/salome/appliskel/salome_starter.py +bin/salome/appliskel/salome_test_driver.py +bin/salome/appliskel/salome_test_driver_gui.py +bin/salome/appliskel/update_catalogs.py +bin/salome/envSalome.py +bin/salome/killSalome.py +bin/salome/killSalomeWithPort.py +bin/salome/launchConfigureParser.py +bin/salome/nameserver.py +bin/salome/orbmodule.py +bin/salome/parseConfigFile.py +bin/salome/prepare_generating_doc.py +bin/salome/pythonpath_reduction.py +bin/salome/runConsole.py +bin/salome/runIDLparser +bin/salome/runRemote.py +bin/salome/runSalome.py +bin/salome/runSalomeCommon.py +bin/salome/runSalomeNoServer.py +bin/salome/runSalomeOld.py +bin/salome/runSalomeOnDemand.py +bin/salome/runSession.py +bin/salome/runTests.py +bin/salome/salomeContext.py +bin/salome/salomeContextUtils.py +bin/salome/salome_instance.py +bin/salome/salome_utils.py +bin/salome/searchFreePort.py +bin/salome/server.py +bin/salome/setenv.py +bin/salome/showNS.py +bin/salome/test/CTestTestfile.cmake +bin/salome/test/SALOMESDS/CTestTestfile.cmake +bin/salome/test/SALOMESDS/TestSalomeSDS.py +bin/salome/test/SALOMESDS/TestSalomeSDSHelper0.py +bin/salome/test/concurrentSession/CTestTestfile.cmake +bin/salome/test/concurrentSession/TestConcurrentSession.py +bin/salome/test/concurrentSession/TestMinimalExample.py +bin/salome/test/concurrentSession/hello.py +bin/salome/test/concurrentSession/usecase_concurrent.sh +bin/salome/test/concurrentSession/usecase_concurrent_single_appli.sh +bin/salome/test/salomeCommand/CTestTestfile.cmake +bin/salome/test/salomeCommand/TestLauncherSessionArgs.py +bin/salome/test/salomeCommand/TestLauncherSimple.py +bin/salome/test/salomeCommand/add.py +bin/salome/test/salomeCommand/getLogger.py +bin/salome/test/salomeCommand/hello.py +bin/salome/test/salomeCommand/lines.py +bin/salome/test/salomeInstance/CTestTestfile.cmake +bin/salome/test/salomeInstance/instances.py +bin/salome/test/salomeTest/CTestTestfile.cmake +bin/salome/test/salomeTest/salome_test.py +bin/salome/test/salomeTest/salome_test.sh +bin/salome/test/salomeTest/salome_test_in_shell.sh +bin/salome/testDF +bin/salome/testDS +bin/salome/virtual_salome.py +bin/salome/waitContainers.py +bin/salome/waitNS.py +idl/salome/Calcium_Ports.idl +idl/salome/DSC_Engines.idl +idl/salome/Logger.idl +idl/salome/Palm_Ports.idl +idl/salome/SALOMEDS.idl +idl/salome/SALOMEDS_Attributes.idl +idl/salome/SALOME_Comm.idl +idl/salome/SALOME_CommonTypes.idl +idl/salome/SALOME_Component.idl +idl/salome/SALOME_ContainerManager.idl +idl/salome/SALOME_Embedded_NamingService.idl +idl/salome/SALOME_Exception.idl +idl/salome/SALOME_ExternalServerLauncher.idl +idl/salome/SALOME_GenericObj.idl +idl/salome/SALOME_Launcher.idl +idl/salome/SALOME_MPIObject.idl +idl/salome/SALOME_ModuleCatalog.idl +idl/salome/SALOME_PACOExtension.idl +idl/salome/SALOME_ParamPorts.idl +idl/salome/SALOME_Parametric.idl +idl/salome/SALOME_Ports.idl +idl/salome/SALOME_PyNode.idl +idl/salome/SALOME_Registry.idl +idl/salome/SALOME_ResourcesManager.idl +idl/salome/SALOME_SDS.idl +idl/salome/SALOME_Session.idl +idl/salome/SALOME_TestComponent.idl +idl/salome/SALOME_TestModuleCatalog.idl +idl/salome/SALOME_Types.idl +idl/salome/nstest.idl +include/salome/AdjacentFunctor.hxx +include/salome/ArgvKeeper.hxx +include/salome/BaseTraceCollector.hxx +include/salome/BasicsGenericDestructor.hxx +include/salome/Basics_DirUtils.hxx +include/salome/Basics_MpiUtils.hxx +include/salome/Basics_OCCTVersion.hxx +include/salome/Basics_Utils.hxx +include/salome/BatchTest.hxx +include/salome/Calcium.hxx +include/salome/CalciumCInterface.hxx +include/salome/CalciumCouplingPolicy.hxx +include/salome/CalciumCxxInterface.hxx +include/salome/CalciumException.hxx +include/salome/CalciumFortranInt.h +include/salome/CalciumGenericProvidesPort.hxx +include/salome/CalciumGenericUsesPort.hxx +include/salome/CalciumInterface.hxx +include/salome/CalciumMacroCInterface.hxx +include/salome/CalciumPortTraits.hxx +include/salome/CalciumProvidesPort.hxx +include/salome/CalciumTypes.hxx +include/salome/CalciumTypes2CorbaTypes.hxx +include/salome/Calcium_Ports.hh +include/salome/ConnectionManager_i.hxx +include/salome/ConstTraits.hxx +include/salome/Container_init_python.hxx +include/salome/Copy2CorbaSpace.hxx +include/salome/Copy2UserSpace.hxx +include/salome/CorbaTypeManipulator.hxx +include/salome/CorbaTypes2CalciumTypes.hxx +include/salome/CosNotifyShorthands.h +include/salome/CouplingPolicy.hxx +include/salome/DF_Application.hxx +include/salome/DF_Attribute.hxx +include/salome/DF_ChildIterator.hxx +include/salome/DF_Container.hxx +include/salome/DF_Document.hxx +include/salome/DF_Label.hxx +include/salome/DF_definitions.hxx +include/salome/DSC_Basic.hxx +include/salome/DSC_Callbacks.hxx +include/salome/DSC_Engines.hh +include/salome/DSC_Exception.hxx +include/salome/DSC_i.hxx +include/salome/DSC_interface.hxx +include/salome/DataIdFilter.hxx +include/salome/DisplayPair.hxx +include/salome/FindKeyPredicate.hxx +include/salome/GenericPort.hxx +include/salome/GenericProvidesPort.hxx +include/salome/GenericUsesPort.hxx +include/salome/HDFOI.hxx +include/salome/HDFarray.hxx +include/salome/HDFascii.hxx +include/salome/HDFattribute.hxx +include/salome/HDFcontainerObject.hxx +include/salome/HDFconvert.hxx +include/salome/HDFdataset.hxx +include/salome/HDFexception.hxx +include/salome/HDFexplorer.hxx +include/salome/HDFexport.hxx +include/salome/HDFfile.hxx +include/salome/HDFgroup.hxx +include/salome/HDFinternalObject.hxx +include/salome/HDFobject.hxx +include/salome/HDFtypes.h +include/salome/IteratorTraits.hxx +include/salome/KERNEL_version.h +include/salome/KernelBasis.hxx +include/salome/KernelBasis.i +include/salome/KernelContainer.hxx +include/salome/KernelContainer.i +include/salome/KernelDS.hxx +include/salome/KernelDS.i +include/salome/KernelHelpers.hxx +include/salome/KernelLauncher.hxx +include/salome/KernelLauncher.i +include/salome/KernelLogger.hxx +include/salome/KernelLogger.i +include/salome/KernelModuleCatalog.hxx +include/salome/KernelModuleCatalog.i +include/salome/KernelSDS.hxx +include/salome/KernelSDS.i +include/salome/KernelServices.hxx +include/salome/KernelServices.i +include/salome/Launcher.hxx +include/salome/Launcher_Job.hxx +include/salome/Launcher_Job_Command.hxx +include/salome/Launcher_Job_CommandSALOME.hxx +include/salome/Launcher_Job_PythonSALOME.hxx +include/salome/Launcher_Job_SALOME.hxx +include/salome/Launcher_Job_YACSFile.hxx +include/salome/Launcher_Utils.hxx +include/salome/LocalTraceBufferPool.hxx +include/salome/Logger.hh +include/salome/MatrixClient.hxx +include/salome/MultiCommException.hxx +include/salome/NOTIFICATION.hxx +include/salome/NOTIFICATION_Consumer.hxx +include/salome/NOTIFICATION_Supplier.hxx +include/salome/NOTIFICATION_Swig.hxx +include/salome/NamingService.i +include/salome/NamingService_WaitForServerReadiness.hxx +include/salome/OpUtil.hxx +include/salome/PalmCouplingPolicy.hxx +include/salome/Palm_Ports.hh +include/salome/PortProperties_i.hxx +include/salome/PythonCppUtils.hxx +include/salome/Receiver.hxx +include/salome/ReceiverFactory.hxx +include/salome/Receivers.hxx +include/salome/RegistryConnexion.hxx +include/salome/RegistryService.hxx +include/salome/ResourcesManager.hxx +include/salome/ResourcesManager_Defs.hxx +include/salome/SALOMEDS.hh +include/salome/SALOMEDSClient.hxx +include/salome/SALOMEDSClient_AttributeComment.hxx +include/salome/SALOMEDSClient_AttributeDrawable.hxx +include/salome/SALOMEDSClient_AttributeExpandable.hxx +include/salome/SALOMEDSClient_AttributeExternalFileDef.hxx +include/salome/SALOMEDSClient_AttributeFileType.hxx +include/salome/SALOMEDSClient_AttributeFlags.hxx +include/salome/SALOMEDSClient_AttributeGraphic.hxx +include/salome/SALOMEDSClient_AttributeIOR.hxx +include/salome/SALOMEDSClient_AttributeInteger.hxx +include/salome/SALOMEDSClient_AttributeLocalID.hxx +include/salome/SALOMEDSClient_AttributeName.hxx +include/salome/SALOMEDSClient_AttributeOpened.hxx +include/salome/SALOMEDSClient_AttributeParameter.hxx +include/salome/SALOMEDSClient_AttributePersistentRef.hxx +include/salome/SALOMEDSClient_AttributePixMap.hxx +include/salome/SALOMEDSClient_AttributePythonObject.hxx +include/salome/SALOMEDSClient_AttributeReal.hxx +include/salome/SALOMEDSClient_AttributeSelectable.hxx +include/salome/SALOMEDSClient_AttributeSequenceOfInteger.hxx +include/salome/SALOMEDSClient_AttributeSequenceOfReal.hxx +include/salome/SALOMEDSClient_AttributeString.hxx +include/salome/SALOMEDSClient_AttributeStudyProperties.hxx +include/salome/SALOMEDSClient_AttributeTable.hxx +include/salome/SALOMEDSClient_AttributeTableOfInteger.hxx +include/salome/SALOMEDSClient_AttributeTableOfReal.hxx +include/salome/SALOMEDSClient_AttributeTableOfString.hxx +include/salome/SALOMEDSClient_AttributeTarget.hxx +include/salome/SALOMEDSClient_AttributeTextColor.hxx +include/salome/SALOMEDSClient_AttributeTextHighlightColor.hxx +include/salome/SALOMEDSClient_AttributeTreeNode.hxx +include/salome/SALOMEDSClient_AttributeUserID.hxx +include/salome/SALOMEDSClient_ChildIterator.hxx +include/salome/SALOMEDSClient_ClientFactory.hxx +include/salome/SALOMEDSClient_GenericAttribute.hxx +include/salome/SALOMEDSClient_IParameters.hxx +include/salome/SALOMEDSClient_Observer.hxx +include/salome/SALOMEDSClient_SComponent.hxx +include/salome/SALOMEDSClient_SComponentIterator.hxx +include/salome/SALOMEDSClient_SObject.hxx +include/salome/SALOMEDSClient_Study.hxx +include/salome/SALOMEDSClient_StudyBuilder.hxx +include/salome/SALOMEDSClient_UseCaseBuilder.hxx +include/salome/SALOMEDSClient_UseCaseIterator.hxx +include/salome/SALOMEDSClient_definitions.hxx +include/salome/SALOMEDSImpl_AttributeComment.hxx +include/salome/SALOMEDSImpl_AttributeDrawable.hxx +include/salome/SALOMEDSImpl_AttributeExpandable.hxx +include/salome/SALOMEDSImpl_AttributeExternalFileDef.hxx +include/salome/SALOMEDSImpl_AttributeFileType.hxx +include/salome/SALOMEDSImpl_AttributeFlags.hxx +include/salome/SALOMEDSImpl_AttributeGraphic.hxx +include/salome/SALOMEDSImpl_AttributeIOR.hxx +include/salome/SALOMEDSImpl_AttributeInteger.hxx +include/salome/SALOMEDSImpl_AttributeLocalID.hxx +include/salome/SALOMEDSImpl_AttributeName.hxx +include/salome/SALOMEDSImpl_AttributeOpened.hxx +include/salome/SALOMEDSImpl_AttributeParameter.hxx +include/salome/SALOMEDSImpl_AttributePersistentRef.hxx +include/salome/SALOMEDSImpl_AttributePixMap.hxx +include/salome/SALOMEDSImpl_AttributePythonObject.hxx +include/salome/SALOMEDSImpl_AttributeReal.hxx +include/salome/SALOMEDSImpl_AttributeReference.hxx +include/salome/SALOMEDSImpl_AttributeSelectable.hxx +include/salome/SALOMEDSImpl_AttributeSequenceOfInteger.hxx +include/salome/SALOMEDSImpl_AttributeSequenceOfReal.hxx +include/salome/SALOMEDSImpl_AttributeString.hxx +include/salome/SALOMEDSImpl_AttributeStudyProperties.hxx +include/salome/SALOMEDSImpl_AttributeTable.hxx +include/salome/SALOMEDSImpl_AttributeTableOfInteger.hxx +include/salome/SALOMEDSImpl_AttributeTableOfReal.hxx +include/salome/SALOMEDSImpl_AttributeTableOfString.hxx +include/salome/SALOMEDSImpl_AttributeTarget.hxx +include/salome/SALOMEDSImpl_AttributeTextColor.hxx +include/salome/SALOMEDSImpl_AttributeTextHighlightColor.hxx +include/salome/SALOMEDSImpl_AttributeTreeNode.hxx +include/salome/SALOMEDSImpl_AttributeUserID.hxx +include/salome/SALOMEDSImpl_Attributes.hxx +include/salome/SALOMEDSImpl_Callback.hxx +include/salome/SALOMEDSImpl_ChildIterator.hxx +include/salome/SALOMEDSImpl_ChildNodeIterator.hxx +include/salome/SALOMEDSImpl_Defines.hxx +include/salome/SALOMEDSImpl_Driver.hxx +include/salome/SALOMEDSImpl_GenericAttribute.hxx +include/salome/SALOMEDSImpl_GenericVariable.hxx +include/salome/SALOMEDSImpl_IParameters.hxx +include/salome/SALOMEDSImpl_SComponent.hxx +include/salome/SALOMEDSImpl_SComponentIterator.hxx +include/salome/SALOMEDSImpl_SObject.hxx +include/salome/SALOMEDSImpl_ScalarVariable.hxx +include/salome/SALOMEDSImpl_Study.hxx +include/salome/SALOMEDSImpl_StudyBuilder.hxx +include/salome/SALOMEDSImpl_TMPFile.hxx +include/salome/SALOMEDSImpl_UseCaseBuilder.hxx +include/salome/SALOMEDSImpl_UseCaseIterator.hxx +include/salome/SALOMEDS_Attributes.hh +include/salome/SALOMEDS_Attributes_wrap.hxx +include/salome/SALOMEDS_Defines.hxx +include/salome/SALOMEDS_DriverDefaultImpl.hxx +include/salome/SALOMEDS_Driver_i.hxx +include/salome/SALOMEDS_GenericAttribute.hxx +include/salome/SALOMEDS_GenericAttribute_i.hxx +include/salome/SALOMEDS_IParameters.hxx +include/salome/SALOMEDS_SComponent.hxx +include/salome/SALOMEDS_SComponentIterator_i.hxx +include/salome/SALOMEDS_SComponent_i.hxx +include/salome/SALOMEDS_SObject.hxx +include/salome/SALOMEDS_SObject_i.hxx +include/salome/SALOMEDS_Study.hxx +include/salome/SALOMEDS_StudyBuilder_i.hxx +include/salome/SALOMEDS_Study_i.hxx +include/salome/SALOMEDS_Tool.hxx +include/salome/SALOMEDS_UseCaseBuilder_i.hxx +include/salome/SALOMEDS_wrap.hxx +include/salome/SALOMEMultiComm.hxx +include/salome/SALOMESDS_Auto.hxx +include/salome/SALOMESDS_AutoRefCountPtr.hxx +include/salome/SALOMESDS_BasicDataServer.hxx +include/salome/SALOMESDS_DataScopeServer.hxx +include/salome/SALOMESDS_DataServerManager.hxx +include/salome/SALOMESDS_Defines.hxx +include/salome/SALOMESDS_Exception.hxx +include/salome/SALOMESDS_KeyWaiter.hxx +include/salome/SALOMESDS_PickelizedPyObjRdExtInitServer.hxx +include/salome/SALOMESDS_PickelizedPyObjRdExtServer.hxx +include/salome/SALOMESDS_PickelizedPyObjRdOnlyServer.hxx +include/salome/SALOMESDS_PickelizedPyObjRdWrServer.hxx +include/salome/SALOMESDS_PickelizedPyObjServer.hxx +include/salome/SALOMESDS_RefCountServ.hxx +include/salome/SALOMESDS_RequestSwitcher.hxx +include/salome/SALOMESDS_Sha1Keeper.hxx +include/salome/SALOMESDS_Transaction.hxx +include/salome/SALOMESDS_TrustTransaction.hxx +include/salome/SALOMETraceCollector.hxx +include/salome/SALOME_Basics.hxx +include/salome/SALOME_CPythonHelper.hxx +include/salome/SALOME_Comm.hh +include/salome/SALOME_Comm_i.hxx +include/salome/SALOME_CommonTypes.hh +include/salome/SALOME_Communication.hxx +include/salome/SALOME_Component.hh +include/salome/SALOME_Component_i.hxx +include/salome/SALOME_Container.hxx +include/salome/SALOME_ContainerManager.hh +include/salome/SALOME_ContainerManager.hxx +include/salome/SALOME_Container_Common.hxx +include/salome/SALOME_Container_i.hxx +include/salome/SALOME_Embedded_NamingService.hh +include/salome/SALOME_Embedded_NamingService.hxx +include/salome/SALOME_Embedded_NamingService_Client.hxx +include/salome/SALOME_Embedded_NamingService_Common.hxx +include/salome/SALOME_Exception.hh +include/salome/SALOME_ExternalServerLauncher.hh +include/salome/SALOME_ExternalServerLauncher.hxx +include/salome/SALOME_Fake_NamingService.hxx +include/salome/SALOME_FileRef_i.hxx +include/salome/SALOME_FileTransferCORBA.hxx +include/salome/SALOME_FileTransfer_i.hxx +include/salome/SALOME_GenericObj.hh +include/salome/SALOME_GenericObj_i.hh +include/salome/SALOME_GenericObj_wrap.hxx +include/salome/SALOME_KernelORB.hxx +include/salome/SALOME_KernelServices.hxx +include/salome/SALOME_Launcher.hh +include/salome/SALOME_Launcher.hxx +include/salome/SALOME_LauncherException.hxx +include/salome/SALOME_Launcher_Parser.hxx +include/salome/SALOME_Launcher_defs.hxx +include/salome/SALOME_LifeCycleCORBA.hxx +include/salome/SALOME_LoadRateManager.hxx +include/salome/SALOME_LocalTrace.hxx +include/salome/SALOME_MPIObject.hh +include/salome/SALOME_Matrix_i.hxx +include/salome/SALOME_ModuleCatalog.hh +include/salome/SALOME_ModuleCatalog.hxx +include/salome/SALOME_ModuleCatalog_Acomponent_impl.hxx +include/salome/SALOME_ModuleCatalog_impl.hxx +include/salome/SALOME_NOTIFICATION.hxx +include/salome/SALOME_NOTIFICATION_SWIG.hxx +include/salome/SALOME_NamingService.hxx +include/salome/SALOME_NamingService_Abstract.hxx +include/salome/SALOME_NamingService_defs.hxx +include/salome/SALOME_PACOExtension.hh +include/salome/SALOME_ParamPorts.hh +include/salome/SALOME_Parametric.hh +include/salome/SALOME_Ports.hh +include/salome/SALOME_PyNode.hh +include/salome/SALOME_Registry.hh +include/salome/SALOME_Registry.hxx +include/salome/SALOME_ResourcesCatalog_Parser.hxx +include/salome/SALOME_ResourcesManager.hh +include/salome/SALOME_ResourcesManager.hxx +include/salome/SALOME_ResourcesManager_Client.hxx +include/salome/SALOME_ResourcesManager_Common.hxx +include/salome/SALOME_SDS.hh +include/salome/SALOME_Session.hh +include/salome/SALOME_StudyEditor.hxx +include/salome/SALOME_TestComponent.hh +include/salome/SALOME_TestModuleCatalog.hh +include/salome/SALOME_Trace.hxx +include/salome/SALOME_Types.hh +include/salome/SALOME_Utils.hxx +include/salome/SALOMEconfig.h +include/salome/Salome_file_i.hxx +include/salome/SenderByteImpl.hxx +include/salome/SenderFactory.hxx +include/salome/ServiceUnreachable.hxx +include/salome/Superv_Component_i.hxx +include/salome/TraceCollector_WaitForServerReadiness.hxx +include/salome/Utils_CommException.hxx +include/salome/Utils_CorbaException.hxx +include/salome/Utils_DESTRUCTEUR_GENERIQUE.hxx +include/salome/Utils_ExceptHandlers.hxx +include/salome/Utils_Identity.hxx +include/salome/Utils_Mutex.hxx +include/salome/Utils_ORB_INIT.hxx +include/salome/Utils_SALOME_Exception.hxx +include/salome/Utils_SINGLETON.hxx +include/salome/Utils_Timer.hxx +include/salome/base_port.hxx +include/salome/basic_port_factory.hxx +include/salome/calcium.h +include/salome/calcium.hf +include/salome/calciumE.h +include/salome/calciumP.h +include/salome/calcium_complex_port_uses.hxx +include/salome/calcium_double_port_uses.hxx +include/salome/calcium_intc_port_uses.hxx +include/salome/calcium_integer_port_uses.hxx +include/salome/calcium_logical_port_uses.hxx +include/salome/calcium_long_port_uses.hxx +include/salome/calcium_port_factory.hxx +include/salome/calcium_provides_port.hxx +include/salome/calcium_real_port_uses.hxx +include/salome/calcium_string_port_uses.hxx +include/salome/calcium_uses_port.hxx +include/salome/calciumf.h +include/salome/data_short_port_provides.hxx +include/salome/data_short_port_uses.hxx +include/salome/fortoc.h +include/salome/hdfi.h +include/salome/libSALOMELog.hxx +include/salome/nstest.hh +include/salome/palm_data_seq_short_port_provides.hxx +include/salome/palm_data_short_port_provides.hxx +include/salome/palm_port_factory.hxx +include/salome/port_factory.hxx +include/salome/provides_port.hxx +include/salome/smIdType.hxx +include/salome/uses_port.hxx +include/salome/utilities.h +include/salome/version.h +%%PYTHON_SITELIBDIR%%/salome/Calcium_Ports_idl.py +%%PYTHON_SITELIBDIR%%/salome/DSC_Engines_idl.py +%%PYTHON_SITELIBDIR%%/salome/Engines/__init__.py +%%PYTHON_SITELIBDIR%%/salome/Engines__POA/__init__.py +%%PYTHON_SITELIBDIR%%/salome/Help.py +%%PYTHON_SITELIBDIR%%/salome/Logger_idl.py +%%PYTHON_SITELIBDIR%%/salome/NSTEST/__init__.py +%%PYTHON_SITELIBDIR%%/salome/NSTEST__POA/__init__.py +%%PYTHON_SITELIBDIR%%/salome/Palm_Ports_idl.py +%%PYTHON_SITELIBDIR%%/salome/Ports/Calcium_Ports/__init__.py +%%PYTHON_SITELIBDIR%%/salome/Ports/Palm_Ports/__init__.py +%%PYTHON_SITELIBDIR%%/salome/Ports/__init__.py +%%PYTHON_SITELIBDIR%%/salome/Ports__POA/Calcium_Ports/__init__.py +%%PYTHON_SITELIBDIR%%/salome/Ports__POA/Palm_Ports/__init__.py +%%PYTHON_SITELIBDIR%%/salome/Ports__POA/__init__.py +%%PYTHON_SITELIBDIR%%/salome/PyInterp.py +%%PYTHON_SITELIBDIR%%/salome/Registry/__init__.py +%%PYTHON_SITELIBDIR%%/salome/Registry__POA/__init__.py +%%PYTHON_SITELIBDIR%%/salome/SALOME/__init__.py +%%PYTHON_SITELIBDIR%%/salome/SALOMEDS/__init__.py +%%PYTHON_SITELIBDIR%%/salome/SALOMEDS_Attributes_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOMEDS__POA/__init__.py +%%PYTHON_SITELIBDIR%%/salome/SALOMEDS_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_Comm_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_CommonTypes_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_Component_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_ContainerManager_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_Embedded_NamingService_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_Exception_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_ExternalServerLauncher_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_GenericObj_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_Launcher_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_Logger/__init__.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_Logger__POA/__init__.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_MPIObject_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_ModuleCatalog/__init__.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_ModuleCatalog__POA/__init__.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_ModuleCatalog_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_PACOExtension_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_ParamPorts_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_Parametric_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_Ports_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_PyNode_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_Registry_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_ResourcesManager_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_SDS_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_Session_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_TYPES/__init__.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_TYPES__POA/__init__.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_TestComponent_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_TestModuleCatalog/__init__.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_TestModuleCatalog__POA/__init__.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_TestModuleCatalog_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME_Types_idl.py +%%PYTHON_SITELIBDIR%%/salome/SALOME__POA/__init__.py +%%PYTHON_SITELIBDIR%%/salome/__pycache__/Help%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/Help%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/PyInterp%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/PyInterp%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/batchmode_salome%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/batchmode_salome%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/calcium%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/calcium%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/dsccalcium%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/dsccalcium%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/iparameters%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/iparameters%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/kernel_test%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/kernel_test%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/launcher_proxy%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/launcher_proxy%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/omnipatch%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/omnipatch%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/pylauncher%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/pylauncher%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_ComponentGUI%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_ComponentGUI%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_genericobj%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_genericobj%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_iapp%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_iapp%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_kernel%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_kernel%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_notebook%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_notebook%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_psutil%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_psutil%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_pynode%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_pynode%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_study%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_study%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_test%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_test%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_version%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/__pycache__/salome_version%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/_calcium.so +%%PYTHON_SITELIBDIR%%/salome/_libNOTIFICATION.so +%%PYTHON_SITELIBDIR%%/salome/_libSALOME_Comm.so +%%PYTHON_SITELIBDIR%%/salome/_libSALOME_LifeCycleCORBA.so +%%PYTHON_SITELIBDIR%%/salome/_pylauncher.so +%%PYTHON_SITELIBDIR%%/salome/batchmode_salome.py +%%PYTHON_SITELIBDIR%%/salome/calcium.py +%%PYTHON_SITELIBDIR%%/salome/dsccalcium.py +%%PYTHON_SITELIBDIR%%/salome/iparameters.py +%%PYTHON_SITELIBDIR%%/salome/kernel_test.py +%%PYTHON_SITELIBDIR%%/salome/launcher_proxy.py +%%PYTHON_SITELIBDIR%%/salome/libNOTIFICATION.py +%%PYTHON_SITELIBDIR%%/salome/libSALOME_Comm.py +%%PYTHON_SITELIBDIR%%/salome/libSALOME_LifeCycleCORBA.py +%%PYTHON_SITELIBDIR%%/salome/nstest_idl.py +%%PYTHON_SITELIBDIR%%/salome/omnipatch.py +%%PYTHON_SITELIBDIR%%/salome/pylauncher.py +%%PYTHON_SITELIBDIR%%/salome/salome/__init__.py +%%PYTHON_SITELIBDIR%%/salome/salome/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__init__.py +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/datamodeler%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/datamodeler%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/deprecation%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/deprecation%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/diclookup%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/diclookup%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/enumerate%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/enumerate%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/logconfig%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/logconfig%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/logger%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/logger%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/pyunittester%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/pyunittester%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/services%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/services%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/studyedit%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/studyedit%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/syshelper%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/syshelper%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/termcolor%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/termcolor%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/testdata%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/testdata%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/threadhelper%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/threadhelper%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/uiexception%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/uiexception%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/unittester%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/__pycache__/unittester%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/datamodeler.py +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/deprecation.py +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/diclookup.py +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/enumerate.py +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/logconfig.py +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/logger.py +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/parametric/__init__.py +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/parametric/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/parametric/__pycache__/__init__%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/parametric/__pycache__/compo_utils%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/parametric/__pycache__/compo_utils%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/parametric/__pycache__/pyscript_utils%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/parametric/__pycache__/pyscript_utils%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/parametric/__pycache__/study_exchange_vars%%PYTHON_EXT_SUFFIX%%.opt-1.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/parametric/__pycache__/study_exchange_vars%%PYTHON_EXT_SUFFIX%%.pyc +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/parametric/compo_utils.py +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/parametric/pyscript_utils.py +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/parametric/study_exchange_vars.py +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/pyunittester.py +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/services.py +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/studyedit.py +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/syshelper.py +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/termcolor.py +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/testdata.py +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/threadhelper.py +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/uiexception.py +%%PYTHON_SITELIBDIR%%/salome/salome/kernel/unittester.py +%%PYTHON_SITELIBDIR%%/salome/salome_ComponentGUI.py +%%PYTHON_SITELIBDIR%%/salome/salome_genericobj.py +%%PYTHON_SITELIBDIR%%/salome/salome_iapp.py +%%PYTHON_SITELIBDIR%%/salome/salome_kernel.py +%%PYTHON_SITELIBDIR%%/salome/salome_notebook.py +%%PYTHON_SITELIBDIR%%/salome/salome_psutil.py +%%PYTHON_SITELIBDIR%%/salome/salome_pynode.py +%%PYTHON_SITELIBDIR%%/salome/salome_study.py +%%PYTHON_SITELIBDIR%%/salome/salome_test.py +%%PYTHON_SITELIBDIR%%/salome/salome_version.py +lib/salome/_ArgvKeeper.so +lib/salome/_KernelBasis.so +lib/salome/_KernelContainer.so +lib/salome/_KernelDS.so +lib/salome/_KernelLauncher.so +lib/salome/_KernelLogger.so +lib/salome/_KernelModuleCatalog.so +lib/salome/_KernelSDS.so +lib/salome/_KernelServices.so +lib/salome/_NamingService.so +lib/salome/libArgvKeeper.so +lib/salome/libCalciumC.so +lib/salome/libDF.so +lib/salome/libLauncher.so +lib/salome/libOpUtil.so +lib/salome/libRegistry.so +lib/salome/libResourcesManager.so +lib/salome/libSALOMEBasics.so +lib/salome/libSALOMELocalTrace.so +lib/salome/libSalomeCalcium.so +lib/salome/libSalomeCatalog.so +lib/salome/libSalomeCommunication.so +lib/salome/libSalomeContainer.so +lib/salome/libSalomeContainerServer.so +lib/salome/libSalomeDS.so +lib/salome/libSalomeDSCContainer.so +lib/salome/libSalomeDSCSuperv.so +lib/salome/libSalomeDSCSupervBasic.so +lib/salome/libSalomeDSClient.so +lib/salome/libSalomeDSImpl.so +lib/salome/libSalomeDatastream.so +lib/salome/libSalomeGenericObj.so +lib/salome/libSalomeHDFPersist.so +lib/salome/libSalomeIDLKernel.so +lib/salome/libSalomeKernelHelpers.so +lib/salome/libSalomeLauncher.so +lib/salome/libSalomeLifeCycleCORBA.so +lib/salome/libSalomeLoggerServer.so +lib/salome/libSalomeNS.so +lib/salome/libSalomeNotification.so +lib/salome/libSalomeORB.so +lib/salome/libSalomePalm.so +lib/salome/libSalomeResourcesManager.so +lib/salome/libSalomeSDS.so +lib/salome/libSalomeTestComponentEngine.so +lib/salome/libTOOLSDS.so +lib/salome/libwith_loggerTraceCollector.so +salome_adm/cmake_files/SalomeKERNELConfig.cmake +salome_adm/cmake_files/SalomeKERNELConfigVersion.cmake +salome_adm/cmake_files/SalomeKERNELTargets-%%CMAKE_BUILD_TYPE%%.cmake +salome_adm/cmake_files/SalomeKERNELTargets.cmake +salome_adm/unix/F77config.h.in +salome_adm/unix/SALOMEconfig.h.in +salome_adm/unix/config_files/DEPRECATED/ac_cc_warnings.m4 +salome_adm/unix/config_files/DEPRECATED/ac_cxx_bool.m4 +salome_adm/unix/config_files/DEPRECATED/ac_cxx_mutable.m4 +salome_adm/unix/config_files/DEPRECATED/ac_cxx_partial_specialization.m4 +salome_adm/unix/config_files/DEPRECATED/ac_cxx_typename.m4 +salome_adm/unix/config_files/DEPRECATED/check_Salome.m4 +salome_adm/unix/config_files/DEPRECATED/check_java.m4 +salome_adm/unix/config_files/DEPRECATED/check_mico.m4 +salome_adm/unix/config_files/DEPRECATED/check_pthreads.m4 +salome_adm/unix/config_files/DEPRECATED/config.guess +salome_adm/unix/config_files/DEPRECATED/config.sub +salome_adm/unix/config_files/DEPRECATED/install-sh +salome_adm/unix/config_files/DEPRECATED/libtool.m4 +salome_adm/unix/config_files/DEPRECATED/ltconfig +salome_adm/unix/config_files/DEPRECATED/ltmain.sh +salome_adm/unix/config_files/DEPRECATED/missing +salome_adm/unix/config_files/DEPRECATED/mkinstalldirs +salome_adm/unix/config_files/ac_check_sizeof_fortran.m4 +salome_adm/unix/config_files/ac_cxx_depend_flag.m4 +salome_adm/unix/config_files/ac_cxx_have_sstream.m4 +salome_adm/unix/config_files/ac_cxx_namespaces.m4 +salome_adm/unix/config_files/ac_cxx_option.m4 +salome_adm/unix/config_files/ac_cxx_template_options.m4 +salome_adm/unix/config_files/ac_cxx_use_std_iostream.m4 +salome_adm/unix/config_files/ac_cxx_warnings.m4 +salome_adm/unix/config_files/ac_linker_options.m4 +salome_adm/unix/config_files/acx_pthread.m4 +salome_adm/unix/config_files/check_Kernel.m4 +salome_adm/unix/config_files/check_boost.m4 +salome_adm/unix/config_files/check_calcium.m4 +salome_adm/unix/config_files/check_cas.m4 +salome_adm/unix/config_files/check_corba.m4 +salome_adm/unix/config_files/check_cppunit.m4 +salome_adm/unix/config_files/check_f77.m4 +salome_adm/unix/config_files/check_hdf5.m4 +salome_adm/unix/config_files/check_htmlgen.m4 +salome_adm/unix/config_files/check_lam.m4 +salome_adm/unix/config_files/check_libbatch.m4 +salome_adm/unix/config_files/check_libxml.m4 +salome_adm/unix/config_files/check_med3.m4 +salome_adm/unix/config_files/check_mpi.m4 +salome_adm/unix/config_files/check_mpich.m4 +salome_adm/unix/config_files/check_omniorb.m4 +salome_adm/unix/config_files/check_openmpi.m4 +salome_adm/unix/config_files/check_paco++.m4 +salome_adm/unix/config_files/check_sockets.m4 +salome_adm/unix/config_files/check_sphinx.m4 +salome_adm/unix/config_files/check_swig.m4 +salome_adm/unix/config_files/check_tbb.m4 +salome_adm/unix/config_files/check_vtk.m4 +salome_adm/unix/config_files/check_withihm.m4 +salome_adm/unix/config_files/enable_pthreads.m4 +salome_adm/unix/config_files/hack_libtool.m4 +salome_adm/unix/config_files/local_install.m4 +salome_adm/unix/config_files/mt_check_omniorb.m4 +salome_adm/unix/config_files/production.m4 +salome_adm/unix/config_files/pyembed.m4 +salome_adm/unix/config_files/python.m4 +salome_adm/unix/depend.in +salome_adm/unix/envScript.in +salome_adm/unix/make_commence.in +salome_adm/unix/make_conclude.in +salome_adm/unix/make_module.in +salome_adm/unix/make_omniorb.in +salome_adm/unix/sstream.in +%%DATADIR%%/resources/kernel/Anita semi square.ttf +%%DATADIR%%/resources/kernel/CatalogModulePersonnel.xml_skel +%%DATADIR%%/resources/kernel/CatalogResources.xml +%%DATADIR%%/resources/kernel/KERNELCatalog.xml +%%DATADIR%%/resources/kernel/SALOMEDS_Resources +%%DATADIR%%/resources/kernel/ScriptsTemplate/SALOME_CM_LOCAL_MPI_LAN.py +%%DATADIR%%/resources/kernel/ScriptsTemplate/SALOME_CM_LOCAL_MPI_MPICH.py +%%DATADIR%%/resources/kernel/ScriptsTemplate/SALOME_CM_LOCAL_MPI_OPENMPI.py +%%DATADIR%%/resources/kernel/ScriptsTemplate/SALOME_CM_LOCAL_NO_MPI.py +%%DATADIR%%/resources/kernel/ScriptsTemplate/SALOME_CM_REMOTE.py +%%DATADIR%%/resources/kernel/ScriptsTemplate/script_parameters.py +%%DATADIR%%/resources/kernel/app-template/CMakeLists.txt +%%DATADIR%%/resources/kernel/app-template/LICENCE +%%DATADIR%%/resources/kernel/app-template/README +%%DATADIR%%/resources/kernel/app-template/doc/CMakeLists.txt +%%DATADIR%%/resources/kernel/app-template/doc/README +%%DATADIR%%/resources/kernel/app-template/doc/conf.py.in +%%DATADIR%%/resources/kernel/app-template/doc/index.rst +%%DATADIR%%/resources/kernel/app-template/doc/intro.rst +%%DATADIR%%/resources/kernel/app-template/doc/link.rst +%%DATADIR%%/resources/kernel/app-template/resources/CMakeLists.txt +%%DATADIR%%/resources/kernel/app-template/resources/SalomeApp.xml.in +%%DATADIR%%/resources/kernel/app-template/resources/about.png +%%DATADIR%%/resources/kernel/app-template/resources/app_icon.png +%%DATADIR%%/resources/kernel/app-template/resources/app_logo.png +%%DATADIR%%/resources/kernel/app-template/resources/doc/CMakeLists.txt +%%DATADIR%%/resources/kernel/app-template/resources/doc/README +%%DATADIR%%/resources/kernel/app-template/resources/doc/sample.pdf +%%DATADIR%%/resources/kernel/app-template/resources/icon_about.png +%%DATADIR%%/resources/kernel/app-template/resources/splash.png +%%DATADIR%%/resources/kernel/app-template/src/CMakeLists.txt +%%DATADIR%%/resources/kernel/app-template/src/resources/CMakeLists.txt +%%DATADIR%%/resources/kernel/app-template/src/resources/LightApp_images.ts +%%DATADIR%%/resources/kernel/app-template/src/resources/LightApp_msg_en.ts +%%DATADIR%%/resources/kernel/app-template/src/resources/LightApp_msg_fr.ts +%%DATADIR%%/resources/kernel/app-template/src/resources/LightApp_msg_ja.ts +%%DATADIR%%/resources/kernel/app-template/src/tests/CMakeLists.txt +%%DATADIR%%/resources/kernel/app-template/src/tests/README +%%DATADIR%%/resources/kernel/app-template/src/tests/helloWorld.py +%%DATADIR%%/resources/kernel/background.png +%%DATADIR%%/resources/kernel/channel.cfg +%%DATADIR%%/resources/kernel/testLauncher.xml