Changeset 3661 in Sophya for trunk/SophyaPI/PIext/pitvmaad.cc


Ignore:
Timestamp:
Oct 23, 2009, 9:49:14 PM (16 years ago)
Author:
cmv
Message:
  • ajout des TArray/TMatrix/TVector <uint_1> et <int_1>
  • cet ajout n'a pas ete porte dans Image<T>
  • correction petit bug:

inline int_4 Convert(int_2& x) const {...}
-> inline int_2 Convert(int_2& x) const {...}

cmv 23/10/2009

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/PIext/pitvmaad.cc

    r3528 r3661  
    134134
    135135#ifdef __CXX_PRAGMA_TEMPLATES__
     136#pragma define_template POTVectorAdapter< uint_1 >
    136137#pragma define_template POTVectorAdapter< uint_2 >
    137138#pragma define_template POTVectorAdapter< uint_4 >
    138139#pragma define_template POTVectorAdapter< uint_8 >
     140#pragma define_template POTVectorAdapter< int_1 >
    139141#pragma define_template POTVectorAdapter< int_2 >
    140142#pragma define_template POTVectorAdapter< int_4 >
     
    145147#pragma define_template POTVectorAdapter< complex<double> >
    146148
     149#pragma define_template POTMatrixAdapter< uint_1 >
    147150#pragma define_template POTMatrixAdapter< uint_2 >
    148151#pragma define_template POTMatrixAdapter< uint_4 >
    149152#pragma define_template POTMatrixAdapter< uint_8 >
     153#pragma define_template POTMatrixAdapter< int_1 >
    150154#pragma define_template POTMatrixAdapter< int_2 >
    151155#pragma define_template POTMatrixAdapter< int_4 >
     
    158162
    159163#if defined(ANSI_TEMPLATES)
     164template class POTVectorAdapter< uint_1 >;
    160165template class POTVectorAdapter< uint_2 >;
    161166template class POTVectorAdapter< uint_4 >;
    162167template class POTVectorAdapter< uint_8 >;
     168template class POTVectorAdapter< int_1 >;
    163169template class POTVectorAdapter< int_2 >;
    164170template class POTVectorAdapter< int_4 >;
     
    169175template class POTVectorAdapter< complex<double> >;
    170176
     177template class POTMatrixAdapter< uint_1 >;
    171178template class POTMatrixAdapter< uint_2 >;
    172179template class POTMatrixAdapter< uint_4 >;
    173180template class POTMatrixAdapter< uint_8 >;
     181template class POTMatrixAdapter< int_1 >;
    174182template class POTMatrixAdapter< int_2 >;
    175183template class POTMatrixAdapter< int_4 >;
Note: See TracChangeset for help on using the changeset viewer.