- Timestamp:
- Apr 27, 2007, 5:19:39 PM (18 years ago)
- Location:
- trunk/SophyaLib/BaseTools
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/BaseTools/datatype.cc
r3225 r3232 4 4 // LAL (Orsay) / IN2P3-CNRS DAPNIA/SPP (Saclay) / CEA 5 5 6 #include "sopnamsp.h"7 6 #include "datatype.h" 8 7 #include <typeinfo> 9 8 10 9 #include <complex> 10 11 namespace SOPHYA { 11 12 12 13 template <class T> … … 169 170 } 170 171 172 171 173 #ifdef __CXX_PRAGMA_TEMPLATES__ 172 174 #pragma define_template DataTypeInfo<uint_1> … … 185 187 186 188 #if defined(ANSI_TEMPLATES) || defined(GNU_TEMPLATES) 187 namespace SOPHYA {188 189 template class DataTypeInfo<uint_1>; 189 190 template class DataTypeInfo<int_1>; … … 198 199 template class DataTypeInfo< complex<r_4> >; 199 200 template class DataTypeInfo< complex<r_8> >; 200 } 201 #endif 201 #endif 202 203 } // FIN namespace SOPHYA -
trunk/SophyaLib/BaseTools/dvlist.cc
r2936 r3232 3 3 // LAL (Orsay) / IN2P3-CNRS DAPNIA/SPP (Saclay) / CEA 4 4 5 #include "sopnamsp.h"6 5 #include "machdefs.h" 7 6 #include <stdlib.h> … … 10 9 #include "dvlist.h" 11 10 #include "strutil.h" 11 12 namespace SOPHYA { 12 13 13 14 //++ … … 624 625 } 625 626 627 626 628 #ifdef __CXX_PRAGMA_TEMPLATES__ 627 629 #pragma define_template ObjFileIO<DVList> … … 629 631 630 632 #if defined(ANSI_TEMPLATES) || defined(GNU_TEMPLATES) 631 template class SOPHYA::ObjFileIO<DVList>;633 template class ObjFileIO<DVList>; 632 634 #endif 635 636 } // FIN namespace SOPHYA 637 -
trunk/SophyaLib/BaseTools/ppftpointerio.cc
r2859 r3232 5 5 6 6 #include "machdefs.h" 7 #include "sopnamsp.h"8 7 #include "ppftpointerio.h" 9 8 9 namespace SOPHYA { 10 10 11 //---------------------------------------------------------------------- 11 namespace SOPHYA {12 12 //! \cond 13 13 // Specific implementation using table I/O in PPFBinaryIOStreams … … 81 81 //! \endcond 82 82 83 } // namespace SOPHYA84 83 /* 85 84 #ifdef __CXX_PRAGMA_TEMPLATES__ … … 100 99 101 100 #if defined(ANSI_TEMPLATES) || defined(GNU_TEMPLATES) 102 namespace SOPHYA {103 101 template class PPF_TPointer_IO< char >; 104 102 template class PPF_TPointer_IO< int_1 >; … … 114 112 template class PPF_TPointer_IO< complex<r_4> >; 115 113 template class PPF_TPointer_IO< complex<r_8> >; 116 }117 114 #endif 118 115 */ 116 117 } // namespace SOPHYA -
trunk/SophyaLib/BaseTools/timestamp.cc
r3082 r3232 1 #include "sopnamsp.h"2 1 #include "machdefs.h" 3 2 #include <stdio.h> … … 8 7 #include "pexceptions.h" 9 8 #include <iostream> 9 10 namespace SOPHYA { 10 11 11 12 /*! … … 352 353 353 354 #if defined(ANSI_TEMPLATES) || defined(GNU_TEMPLATES) 354 template class SOPHYA::ObjFileIO<TimeStamp>;355 template class ObjFileIO<TimeStamp>; 355 356 #endif 357 358 } // FIN namespace SOPHYA
Note:
See TracChangeset
for help on using the changeset viewer.