4747 StampTwoChars stamp;
4848 GalleyVectorStrgalley (stamp);
4949 Blobblob (short_sample,strlen (short_sample));
50- std::vector<std::string> res = galley.ExtractStr (blob);
50+ std::vector<std::string> res = galley.ExtractStrVector (blob);
5151
5252is (res[0 ], expected1," GalleyVector, fixed size string stamp: First element of shifted list is ok" );
5353is (res[1 ], expected2," GalleyVector, fixed size string stamp: Second element of shifted list is ok" );
6868 StampTwoCharsList stamp_charlist;
6969 GalleyVectorStrgalley (stamp_charlist);
7070
71- std::vector<std::string> res = galley.ExtractStr (blob);
71+ std::vector<std::string> res = galley.ExtractStrVector (blob);
7272 std::string str;
7373
7474is (res[0 ], expected1," GalleyVector, unlimited size string stamp: First element of shifted list is ok" );
8787 StampArithm<unsigned short int > stamp;
8888 GalleyVectorBingalley (stamp);
8989 Blobblob (short_sample,strlen (short_sample));
90- std::vector<std::vector<char >> res = galley.ExtractBin (blob);
90+ std::vector<std::vector<char >> res = galley.ExtractBinVector (blob);
9191
9292 std::vector<char > v;
9393unsigned short int * data;
@@ -113,7 +113,7 @@ main()
113113 StampArithm<signed int > stamp;
114114 GalleyVectorV<signed int >galley (stamp);
115115 Blobblob ((char *)sample,sizeof (sample));
116- std::vector<signed int > res = galley.ExtractValues (blob);
116+ std::vector<signed int > res = galley.ExtractValuesVector (blob);
117117ok (!memcmp ((void *) &sample, (void *) &res[0 ],sizeof (sample))," GalleyVectorV returns ok" );
118118 }
119119
@@ -133,7 +133,7 @@ main()
133133 StampSeveralChars stamp;
134134 GalleyVectorStrgalley (stamp);
135135
136- std::vector<std::string> res = galley.ExtractStr (blob);
136+ std::vector<std::string> res = galley.ExtractStrVector (blob);
137137 std::string str;
138138
139139is (res[0 ], expected1," GalleyVector, unlimited size string stamp: First element of shifted list is ok" );
@@ -163,7 +163,7 @@ main()
163163
164164 GalleySetStrgalley (stamps);
165165
166- std::vector<std::string> res = galley.ExtractStr (blob);
166+ std::vector<std::string> res = galley.ExtractStrSet (blob);
167167 std::string str;
168168 str = res[0 ];
169169is (str, expected1," GalleySet, fixed size string stamps: First element of vector is ok" );
@@ -196,7 +196,7 @@ main()
196196
197197 GalleySetStrgalley (stamps);
198198
199- std::vector<std::string> res = galley.ExtractStr (blob);
199+ std::vector<std::string> res = galley.ExtractStrSet (blob);
200200 std::string str;
201201
202202 str = res[0 ];
@@ -230,7 +230,7 @@ main()
230230
231231 GalleySetStrgalley (stamps);
232232
233- std::vector<std::string> res = galley.ExtractStr (blob);
233+ std::vector<std::string> res = galley.ExtractStrSet (blob);
234234 std::string str;
235235
236236is (res[0 ], expected1," GalleySet, unbounded size string stamp: First element of vector is ok" );
@@ -275,7 +275,7 @@ main()
275275
276276 GalleySetStrgalley (stamps);
277277
278- std::vector<std::string> res = galley.ExtractStr (blob);
278+ std::vector<std::string> res = galley.ExtractStrSet (blob);
279279 std::string str;
280280
281281 str = res[0 ];
@@ -326,7 +326,7 @@ main()
326326
327327 GalleySetStrgalley (stamps);
328328
329- std::vector<std::string> res = galley.ExtractStr (blob);
329+ std::vector<std::string> res = galley.ExtractStrSet (blob);
330330 std::string str;
331331
332332 str = res[0 ];
@@ -374,7 +374,7 @@ main()
374374
375375 GalleySetStrgalley (stamps);
376376
377- std::vector<std::string> res = galley.ExtractStr (blob);
377+ std::vector<std::string> res = galley.ExtractStrSet (blob);
378378 std::string str;
379379
380380 str = res[0 ];
@@ -424,7 +424,7 @@ main()
424424
425425 GalleySetStrgalley (stamps);
426426try {
427- std::vector<std::string> res = galley.ExtractStr (blob);
427+ std::vector<std::string> res = galley.ExtractStrSet (blob);
428428ok (false ," GalleySet, not enough data" );
429429 }
430430catch (OutOfData)