Renamed KKJ class to KKJGridCoordinate
[ptas] / tests / util / stlhelpers.h
1 #ifndef STLHELPERS_H
2 #define STLHELPERS_H
3
4 #include <ostream>
5 #include "kkjgridcoordinate.h"
6 #include <QGeoCoordinate>
7
8 std::ostream& operator<<(std::ostream& stream, const KKJGridCoordinate &val)
9 {
10     stream << val.northing() << ", " << val.easting();
11     return stream;
12 }
13
14 std::ostream& operator<<(std::ostream& stream, const QTM_NAMESPACE::QGeoCoordinate &val)
15 {
16     stream << val.latitude() << ", " << val.longitude();
17     return stream;
18 }
19
20 #endif // STLHELPERS_H