// IAPS - Image analysis program system // // File name : exGF.cc // Description: an example of using of GF file set // Last change: 26.04.1994 // Author : Radek Marik // Libraries : iaps // ----------------------------------------------------------------------- // // // Modifications: // // // // #include #include "amma/PGgf.hh" int main(void) { ostream & myStdO = cout; // AT&T C++ 3.1 cout = ostream_withassign // GNU C++ 2.4.5 it must be reference myStdO << "GF file set\n" << "===========\n"; GfSetsC sets(cin); myStdO << "Number of sets: " << sets.Size() << '\n' << sets << '\n'; myStdO << "End of the example\n" << flush; return(0); } // IAPS - Image analysis program system. // End of file exUsefFn.cc