Changeset 3751 in Sophya for trunk/SophyaLib/TArray/tarrinit.cc
- Timestamp:
- Mar 3, 2010, 9:46:07 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/TArray/tarrinit.cc
r3661 r3751 22 22 // V= 2.04 , Jan/Fev 2007: Ajout TArray::ZeroSize() , RenewObjId() et methodes de cast (arrctcast.h) 23 23 // V= 2.1 , Avr/Jul 2007: Constr.copie/extrac sous-tableaux thread-safe 24 #define MOD_VERS 2.1 24 // V= 2.2 , Fev/Nars 2010: Tableaux en long double 25 #define MOD_VERS 2.2 25 26 26 27 TArrayInitiator::TArrayInitiator() … … 83 84 DObjRegister(FIO_TArray<r_8>, TVector<r_8>); 84 85 86 #ifdef SO_LDBLE128 87 PPRegister(FIO_TArray<r_16>); 88 DObjRegister(FIO_TArray<r_16>, TArray<r_16>); 89 DObjRegister(FIO_TArray<r_16>, TMatrix<r_16>); 90 DObjRegister(FIO_TArray<r_16>, TVector<r_16>); 91 #endif 92 85 93 PPRegister(FIO_TArray< complex<r_4> >); 86 94 DObjRegister(FIO_TArray< complex<r_4> >, TArray< complex<r_4> >); … … 92 100 DObjRegister(FIO_TArray< complex<r_8> >, TMatrix< complex<r_8> >); 93 101 DObjRegister(FIO_TArray< complex<r_8> >, TVector< complex<r_8> >); 102 103 #ifdef SO_LDBLE128 104 PPRegister(FIO_TArray< complex<r_16> >); 105 DObjRegister(FIO_TArray< complex<r_16> >, TArray< complex<r_16> >); 106 DObjRegister(FIO_TArray< complex<r_16> >, TMatrix< complex<r_16> >); 107 DObjRegister(FIO_TArray< complex<r_16> >, TVector< complex<r_16> >); 108 #endif 94 109 95 110 SophyaInitiator::RegisterModule("TArray", MOD_VERS); // Module name and version number registration
Note:
See TracChangeset
for help on using the changeset viewer.