Author: trondeau Date: 2007-06-05 09:10:07 -0600 (Tue, 05 Jun 2007) New Revision: 5684
Modified: gnuradio/branches/features/ofdm/sync/gnuradio-core/src/lib/swig/gnuradio.i Log: Adding templates for swig to export vectors of vectors Modified: gnuradio/branches/features/ofdm/sync/gnuradio-core/src/lib/swig/gnuradio.i =================================================================== --- gnuradio/branches/features/ofdm/sync/gnuradio-core/src/lib/swig/gnuradio.i 2007-06-05 14:40:19 UTC (rev 5683) +++ gnuradio/branches/features/ofdm/sync/gnuradio-core/src/lib/swig/gnuradio.i 2007-06-05 15:10:07 UTC (rev 5684) @@ -59,7 +59,15 @@ %template() vector<int>; %template() vector<float>; %template() vector<double>; - %template() vector<std::complex<float> >; + + %template() vector< std::complex<float> >; + %template() vector< std::vector< unsigned char > >; + %template() vector< std::vector< char > >; + %template() vector< std::vector< short > >; + %template() vector< std::vector< int > >; + %template() vector< std::vector< float > >; + %template() vector< std::vector< double > >; + %template() vector< std::vector< std::complex<float> > >; }; //////////////////////////////////////////////////////////////////////// _______________________________________________ Commit-gnuradio mailing list [email protected] http://lists.gnu.org/mailman/listinfo/commit-gnuradio
