constructor

This commit is contained in:
Erik Frojdh 2020-01-20 14:23:28 +01:00
parent 66b837eb59
commit a0c222b3c6

View File

@ -211,6 +211,8 @@ class slsDetectorDefs {
struct xy {
int x{0};
int y{0};
xy() = default;
xy(int x, int y):x(x),y(y){};
};
#endif