mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
05c91872bd
and Post-Processing for numerical simulation. +Supports interoperability between CAD modeling and computation software (CAD-CAE link) +Makes easier the integration of new components on heterogeneous systems for numerical computation +Sets the priority to multi-physics coupling between computation software +Provides a generic user interface, user-friendly and efficient, which helps to reduce the costs and delays of carrying out the studies +Reduces training time to the specific time for learning the software solution which has been based on this platform +All functionalities are accessible through the programmatic integrated Python console This package contains MED module. WWW: http://www.salome-platform.org - Stas Timokhin devel@stasyan.com PR: ports/143469 Submitted by: Stas Timokhin <devel at stasyan.com>
16 lines
443 B
C++
16 lines
443 B
C++
--- src/MEDWrapper/V2_2/MED_V2_2_Wrapper.cxx.orig 2009-06-04 16:07:01.000000000 +0700
|
|
+++ src/MEDWrapper/V2_2/MED_V2_2_Wrapper.cxx 2009-06-04 16:07:21.000000000 +0700
|
|
@@ -95,7 +95,11 @@
|
|
void
|
|
GetVersionRelease<eV2_2>(TInt& majeur, TInt& mineur, TInt& release)
|
|
{
|
|
- MEDversionDonner(&majeur, &mineur, &release);
|
|
+ med_int a,b,c;
|
|
+ a=majeur;
|
|
+ b=mineur;
|
|
+ c=release;
|
|
+ MEDversionDonner(&a, &b, &c);
|
|
}
|
|
|
|
template<>
|