Changeset 583 in Sophya for trunk/SophyaProg/Tests/tstndblk.cc
- Timestamp:
- Nov 16, 1999, 6:00:47 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaProg/Tests/tstndblk.cc
r552 r583 22 22 cout<<endl<<"Createur par defaut Va"<<endl; 23 23 NDataBlock<int_4> V1; V1.Print(1,99); 24 TRY{24 try { 25 25 cout<<endl<<"...Createur par copie V2e(V1)"<<endl; 26 26 NDataBlock<int_4> V2e(V1); 27 } CATCHALL{28 cout<<"...Exception catched "<<endl;29 } ENDTRY27 } catch(PException exc) { 28 cout<<"...Exception catched : " << exc.Msg() << endl; 29 } 30 30 31 31 //-----------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.