RE: [boost] Any interest in a string literal selector helper library?

2003-09-02 Thread Ehsan Akhgari
I've done this before as well. But it's a very simple function. And I assume TestAutoSelect is a macro. Can I take a look at the code? Yes, TextAutoSelect is a macro, because without using a macro, there is no way to generate a wchar_t string literal (prefixed with L) from a char string

Re: [boost] Any interest in a string literal selector helper library?

2003-09-01 Thread John Torjo
Subject: [boost] Any interest in a string literal selector helper library? Hi all, I have written a relatively small library which I've found pretty useful in my own projects. I have to deal with std::basic_string objects a lot in my applications, and I almost always write template code

[boost] Any interest in a string literal selector helper library?

2003-08-31 Thread Ehsan Akhgari
Hi all, I have written a relatively small library which I've found pretty useful in my own projects. I have to deal with std::basic_string objects a lot in my applications, and I almost always write template code so that the same code works with both std::string and std::wstring types. The only