Dependencies for tokenizer?
In order to use the tokenizer classes I end up requiring 47 files, which seems a little steep for my purposes. All I really need is to tokenize strings based on a couple of single char delimiters. Kind of a C++ step above strtok() was what I had in mind. Any ideas about how to get this functionality w/o all the headers? Thanks, -- Tony K.
What's wrong with 47 files? How much longer does it take to compile? On Mon, 28 Jan 2002, Anthony Kolarik wrote:
In order to use the tokenizer classes I end up requiring 47 files, which seems a little steep for my purposes. All I really need is to tokenize strings based on a couple of single char delimiters. Kind of a C++ step above strtok() was what I had in mind.
Any ideas about how to get this functionality w/o all the headers? Thanks, -- Tony K.
---------------------------------------------------------------------- Jeremy Siek http://www.osl.iu.edu/~jsiek/ Ph.D. Student, Indiana Univ. B'ton email: jsiek@osl.iu.edu C++ Booster (http://www.boost.org) office phone: (812) 855-3608 ----------------------------------------------------------------------
Any ideas about how to get this functionality w/o all the headers? Thanks, -- Tony K. In order to use the tokenizer classes I end up requiring 47 files, which
What's wrong with 47 files? How much longer does it take to compile?
He might be sub setting boost and only wants to include the needed files. Anyway, this was brought up during the review, but at the time only 20 files were needed (the very first tokenizer only need 2 boost headers). It was the switch to iterator_adaptors that caused the include explosion at the time... http://groups.yahoo.com/group/boost/message/12719 Jeff
participants (3)
-
Anthony Kolarik
-
Jeff Garland
-
Jeremy Siek