Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
1k views

Overload handling of std::endl?

I want to define a class MyStream so that: MyStream myStream; myStream << 1 << 2 << 3 << std::endl << 5 << 6 << std::endl << 7 << 8 << ...
4
votes
1answer
104 views

How to put our own function declaration in iostream library in c++?

ostream& tab (ostream &o) { return o << '\t'; } I want to put this declaration in iostream library..how can i do this??
4
votes
2answers
205 views

How to Generically Define Insertion Operators for all C++ IOStream Manipulators?

All, Why does the following code fail to compile for 'std::endl', but it's fine for all of the other inserted types? #include <sstream> // ostringstream /// @brief A class that does streamed, ...
3
votes
3answers
265 views

How do I use a manipulator to fomat my hex output with padded left zeros

The little test program below prints out: And SS Number IS =3039 I would like the number to print out with padded left zeros such that the total length is 8. So: And SS Number IS =00003039 ...
2
votes
2answers
59 views

How do stream manipulators with arguments work?

In Stroustrup's C++ book, there is an example of a custom manipulator taking an argument (pls see the attached code). I am confused about how the struct is created. In particular, it looks like there ...
2
votes
3answers
471 views

Simple wostream logging class (with custom stream manipulators)

I've been reading tons of questions, articles, and documentation, but I've not found a solution to my problem. I'd like to create a simple class for use in debugging. The end result of which would ...
2
votes
2answers
1k views

C++ - How to reset the output stream manipulator flags

I've got a line of code that sets the fill value to a '-' character in my output, but need to reset the setfill flag to its default whitespace character. How do I do that? cout << setw(14) ...
1
vote
0answers
57 views

ABOUT cout's manipulators in C++ [closed]

Possible Duplicate: Inserting and removing commas from integers in c++ Is there a built-in function that comma-separates a number in C, C++, or JavaScript? is there any manipulators in ...
1
vote
2answers
142 views

Setting step-size with Locator and Manipulate in Mathematica

Given this Mathematica code, Manipulate[Graphics[Line[{{0, 0}, p}], PlotRange -> 2], {{p, {1, 1}}, Locator}] How do I set the step distance on the locator? And if possible, constrain them?
1
vote
2answers
242 views

ostream showbase non-present for zero value, and internal doesn't work for HANDLE? Must I fudge it?

PSPS: (a Pre-scripted Post-script) It has just come to mind that a more prescient question would have included the notion of: Is this non-display of "0x"(showbase) for zero-value integers a standard ...
0
votes
4answers
208 views

Convert C format string to C++ io manipulators

In C, I'm using printf("%+10.5d\n", x); to print the integer x. I've written a small test case for C++ io manipulators, but the output has a different format: #include <iostream> #include ...
0
votes
2answers
162 views

ignore punctuation using manipulator

Is it possibile to ignore punctuacion using std manipulator on cin? For example suppose you have an input stream (in the actual case a file) like: "one, two three". I want to be able to do: f ...
0
votes
1answer
306 views

Creating ostream manipulators for a specific class

I have a class that is derived from ostream: class my_ostream: public std::ostream { // ... } I want to make a manipulator (for example do_something), that works specifically to this class, ...
0
votes
2answers
91 views

XML Dialect for scripting robot tasks

In my next project I will have to implement an automation solution to test a hardware device. basically, the test involves an industrial robotic arm picking a device to be tested, holding it at some ...
0
votes
3answers
711 views

Custom C++ manipulator problem

I'm trying to implement my own stream manipulator inside my logging class. It's basically endline manipulator which changes state of a flag. However when I try to use it, I'll get: ftypes.cpp:57: ...
0
votes
4answers
859 views

custom stream manipulator for class

I am trying to write a simple audit class that takes input via operator << and writes the audit after receiving a custom manipulator like this: class CAudit { public: //needs to be ...