Changeset 802 in Sophya for trunk/SophyaLib/BaseTools/sophyainit.cc
- Timestamp:
- Apr 3, 2000, 7:32:27 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/BaseTools/sophyainit.cc
r754 r802 11 11 12 12 #include "ppersist.h" 13 #include " ndatablock.h"13 #include "fiondblock.h" 14 14 #include "dvlist.h" 15 15 … … 36 36 PIOPersist::Initialize(); 37 37 PPRegister(FIO_NDataBlock<uint_1>); 38 DObjRegister(FIO_NDataBlock<uint_1>, NDataBlock<uint_1>); 38 39 PPRegister(FIO_NDataBlock<uint_2>); 40 DObjRegister(FIO_NDataBlock<uint_2>, NDataBlock<uint_2>); 39 41 PPRegister(FIO_NDataBlock<int_2>); 42 DObjRegister(FIO_NDataBlock<int_2>, NDataBlock<int_2>); 40 43 PPRegister(FIO_NDataBlock<int_4>); 44 DObjRegister(FIO_NDataBlock<int_4>, NDataBlock<int_4>); 41 45 PPRegister(FIO_NDataBlock<int_8>); 46 DObjRegister(FIO_NDataBlock<int_8>, NDataBlock<int_8>); 42 47 PPRegister(FIO_NDataBlock<uint_4>); 48 DObjRegister(FIO_NDataBlock<uint_4>, NDataBlock<uint_4>); 43 49 PPRegister(FIO_NDataBlock<uint_8>); 50 DObjRegister(FIO_NDataBlock<uint_8>, NDataBlock<uint_8>); 44 51 PPRegister(FIO_NDataBlock<r_4>); 52 DObjRegister(FIO_NDataBlock<r_4>, NDataBlock<r_4>); 45 53 PPRegister(FIO_NDataBlock<r_8>); 46 PPRegister(FIO_NDataBlock< complex<float> >); 47 PPRegister(FIO_NDataBlock< complex<double> >); 54 DObjRegister(FIO_NDataBlock<r_8>, NDataBlock<r_8>); 55 PPRegister(FIO_NDataBlock< complex<r_4> >); 56 DObjRegister(FIO_NDataBlock< complex<r_4> >, NDataBlock< complex<r_4> >); 57 PPRegister(FIO_NDataBlock< complex<r_8> >); 58 DObjRegister(FIO_NDataBlock< complex<r_8> >, NDataBlock< complex<r_8> >); 48 59 49 60 PPRegister(ObjFileIO<DVList>); 61 DObjRegister(ObjFileIO<DVList>, DVList); 50 62 51 63
Note:
See TracChangeset
for help on using the changeset viewer.