This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: user-defined types and basic_string



Thank you for posting the example for an "unsigned short" basic_string. I didn't get a chance to get back to this until yesterday, but had some problems with the final example you posted.

I was unable to implicitly create characters from integers :

basic_string<char_type> theString;
theString.append(0x20);
theString.append('o');

No amount of casting was able to fix this, and constructors in character<T> will not work because then it isn't Plain Old Data (POD??). With a constructor it can't be used in a union, among other problems.


I ended up not using templates at all, instead just defining char_traits as:

namespace std
{
struct char_traits<unsigned short>
{
typedef unsigned short char_type;
.
.
.

};
};

Unless you know of an 'elegant' way to go from an int to a character, this will have to do.


Thanks,
Tony



_________________________________________________________________
MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]