mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-06-19 18:47:13 +02:00
remove factories and change to size_t
This commit is contained in:
@ -31,6 +31,8 @@ typedef struct {
|
||||
struct xy {
|
||||
int row;
|
||||
int col;
|
||||
bool operator==(const xy &other) const { return row == other.row && col == other.col; }
|
||||
bool operator!=(const xy &other) const { return !(*this == other); }
|
||||
};
|
||||
|
||||
// using image_shape = std::array<ssize_t, 2>;
|
||||
|
Reference in New Issue
Block a user