18f93b6ef37bd8232d6ddfac0468cba0202bab47
[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   QString x;
14   QString y;
15 };
16 #endif // LOCATION_H