2f4c44081ac5fe16dc6454c737b8c80ab20c7d18
[ptas] / zouba / qt / location.h
1 #ifndef LOCATION_H
2 #define LOCATION_H
3
4 class Location
5 {
6 public:
7   Location( QString x, QString y ) :
8     x(x),
9     y(y)
10   {
11   };
12
13   Location( QString address )
14   {
15     Q_UNUSED( address );
16   };
17
18   QString x;
19   QString y;
20 };
21 #endif // LOCATION_H