Ravi Inampudi wrote:
There is no template for "omanip" in C++ standard library. What are the options for people migrating to C++ standard library?
What exactly is this omanip supposed to do? Is it something like this: http://h30097.www3.hp.com/cplus/clu007.htm#index_x_247 There is no feature like that in the standard but the implementation defined "smanip" type might be close. It isn't difficult to write one's own, either using the implementation-defined "smanip" type or completely from scratch. We have a few examples demonstrating how: http://svn.apache.org/repos/asf/stdcxx/tags/4.2.0/examples/manual/fmtflags_manip.cpp http://svn.apache.org/repos/asf/stdcxx/tags/4.2.0/examples/manual/money_manip.cpp http://svn.apache.org/repos/asf/stdcxx/tags/4.2.0/examples/manual/time_manip.cpp The first one was prompted by a discussion in the following thread: http://groups.google.com/group/comp.lang.c++/browse_frm/thread/acfa77336a6137cd/50e116d0a0c889ad Martin
Ravi
