From: Ralph T. <ra...@gm...> - 2006-02-19 08:05:46
|
Hi asl-devel, If I have a program that uses the iomanip code to do print out a dictionary, e.g.: { adobe::dictionary_t dict; dict.insert( adobe::static_name_t( "test" ), adobe::value_t( 25 ) ); dict.insert( adobe::static_name_t( "test2" ), adobe::value_t( std::string( "string" ) ) ); adobe::begin_pdf( std::cout ) << dict; adobe::end_pdf( std::cout ); } which generates output that looks like: % pdf output << /test 25 /test2 (string) >> % end pdf output is there any way that I can read this back into a dictionary? (I don't particularly need postscript output, if asl_cel/xml/... is easier to read in then I can use that). Ralph |