Useful Qt I/O functions.
More...
#include <QPointF>
#include <QRectF>
#include <iostream>
Go to the source code of this file.
|
| std::ostream & | operator<< (std::ostream &os, const QPointF &point) |
| | Output of QPointF to std::ostream. More...
|
| |
| std::ostream & | operator<< (std::ostream &os, const QRectF &rect) |
| | Output of QPointF to std::ostream. More...
|
| |
| std::istream & | operator>> (std::istream &is, QPointF &point) |
| | Read a QPointF from a std::istream. More...
|
| |
| std::istream & | operator>> (std::istream &is, QRectF &rect) |
| | Read a QRectF from a std::istream. More...
|
| |
- Date
- 23.09.2008
- Author
- Jens-Malte Gottfried
Definition in file Qtiostream.h.
| std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const QPointF & |
point |
|
) |
| |
- Parameters
-
| os | reference to current stream |
| point | reference to point to output |
- Returns
- modified os
Definition at line 27 of file Qtiostream.cpp.
| std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const QRectF & |
rect |
|
) |
| |
- Parameters
-
| os | reference to current stream |
| rect | reference to rect to output |
- Returns
- modified os
Definition at line 32 of file Qtiostream.cpp.
| std::istream& operator>> |
( |
std::istream & |
is, |
|
|
QPointF & |
point |
|
) |
| |
- Parameters
-
| is | reference to input stream |
| point | reference to output point |
- Returns
- modified os
Definition at line 37 of file Qtiostream.cpp.
| std::istream& operator>> |
( |
std::istream & |
is, |
|
|
QRectF & |
rect |
|
) |
| |
- Parameters
-
| is | reference to input stream |
| rect | reference to output rect |
- Returns
- modified os
Definition at line 49 of file Qtiostream.cpp.