tuchulcha  0.10.1
Graphical Workflow Configuration Editor
Qtiostream.h
Go to the documentation of this file.
1 /* Copyright (C) 2009 Jens-Malte Gottfried
2 
3  This file is part of Tuchulcha.
4 
5  Tuchulcha is free software: you can redistribute it and/or modify
6  it under the terms of the GNU Lesser General Public License as published by
7  the Free Software Foundation, either version 3 of the License, or
8  (at your option) any later version.
9 
10  Tuchulcha is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU Lesser General Public License for more details.
14 
15  You should have received a copy of the GNU Lesser General Public License
16  along with Tuchulcha. If not, see <http://www.gnu.org/licenses/>.
17 */
24 #ifndef QTIOSTREAM_H_
25 #define QTIOSTREAM_H_
26 
27 #include <QPointF>
28 #include <QRectF>
29 #include <iostream>
30 
32 
36 std::ostream& operator<<(std::ostream& os, const QPointF& point);
37 
39 
43 std::ostream& operator<<(std::ostream& os, const QRectF& rect);
44 
46 
50 std::istream& operator>>(std::istream& is, QPointF& point);
51 
53 
57 std::istream& operator>>(std::istream& is, QRectF& rect);
58 #endif /*QTIOSTREAM_H_*/
std::ostream & operator<<(std::ostream &os, const QPointF &point)
Output of QPointF to std::ostream.
Definition: Qtiostream.cpp:27
std::istream & operator>>(std::istream &is, QPointF &point)
Read a QPointF from a std::istream.
Definition: Qtiostream.cpp:37