Changeset 2870 in Sophya
- Timestamp:
- Jan 3, 2006, 3:23:37 PM (20 years ago)
- Location:
- trunk/SophyaLib/NTools
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/NTools/cimage.cc
r2615 r2870 192 192 193 193 #if defined(ANSI_TEMPLATES) || defined(GNU_TEMPLATES) 194 namespace SOPHYA { 194 195 template class Image<uint_2>; 195 196 template class Image<int_4>; … … 205 206 template class FIO_Image<r_4>; 206 207 template class FIO_Image<r_8>; 207 208 } 208 209 #endif -
trunk/SophyaLib/NTools/dynccd.cc
r2808 r2870 176 176 177 177 #if defined(ANSI_TEMPLATES) || defined(__GNU_TEMPLATES__) 178 namespace SOPHYA { 178 179 template Image<uint_2> NoiseImage<uint_2>(Image<uint_2> const& , DynCCD const&); 179 180 template Image< int_4> NoiseImage< int_4>(Image< int_4> const& , DynCCD const&); … … 183 184 template void ImgAddNoise< int_4>(Image< int_4>&, DynCCD const&); 184 185 template void ImgAddNoise< r_4>(Image< r_4>&, DynCCD const&); 186 } 185 187 #endif -
trunk/SophyaLib/NTools/fftservintf.cc
r2615 r2870 338 338 339 339 #if defined(ANSI_TEMPLATES) || defined(GNU_TEMPLATES) 340 namespace SOPHYA { 340 341 template class FFTArrayChecker<r_4>; 341 342 template class FFTArrayChecker<r_8>; 343 } 342 344 #endif 343 345 -
trunk/SophyaLib/NTools/generaldata.cc
r2683 r2870 1151 1151 1152 1152 #if defined(ANSI_TEMPLATES) || defined(GNU_TEMPLATES) 1153 template class ObjFileIO<GeneralFitData>;1153 template class SOPHYA::ObjFileIO<GeneralFitData>; 1154 1154 #endif -
trunk/SophyaLib/NTools/objfitter.cc
r2615 r2870 407 407 408 408 #if defined(ANSI_TEMPLATES) || defined(GNU_TEMPLATES) 409 namespace SOPHYA { 409 410 template class ArrayFitter<int_4>; 410 411 template class ArrayFitter<r_4>; … … 417 418 template class ImageFitter<r_4>; 418 419 template class ImageFitter<r_8>; 420 } 419 421 #endif -
trunk/SophyaLib/NTools/perandom.cc
r2840 r2870 163 163 delete[] tabX; 164 164 165 ranY = new (FunRan*[nBinX]);165 ranY = new FunRan* [nBinX]; 166 166 167 167 for (int_4 k=0; k<nBinX; k++) … … 187 187 ranX = new FunRan(tabX, nBinX); 188 188 189 ranY = new (FunRan*[nBinX]);189 ranY = new FunRan* [nBinX]; 190 190 191 191 for (int_4 k=0; k<nBinX; k++) -
trunk/SophyaLib/NTools/poly.cc
r2808 r2870 793 793 794 794 #if defined(ANSI_TEMPLATES) || defined(GNU_TEMPLATES) 795 namespace SOPHYA { 795 796 template class ObjFileIO<Poly>; 796 797 template class ObjFileIO<Poly2>; 798 } 797 799 #endif
Note:
See TracChangeset
for help on using the changeset viewer.