po-lite: add support for sequence containers
This commit allows option target storage to be of the form V<T>, where V is a container supporting .push_back(). The default parser tokenises the argument string using commas or white space characters, with adjacent white space characters being merged, and commas are not: "a, b,c,,e" = {T1(a), T1(b), T1(c), T1(), T1(e)} "a b c e" = {T1(a), T1(b), T1(c), T1(e)}. git-svn-id: http://wg11.sc29.org/svn/repos/MPEG-I/Part5-PointCloudCompression/TM/TMC3/trunk@1317 94298a81-5874-47c9-aab8-bfb24faeed7f
Please register or sign in to comment