| 27 | using std::vector; |
| 28 | |
| 29 | struct type_params { |
| 30 | string name; |
| 31 | af_dtype type; |
| 32 | double real; |
| 33 | double imag; |
| 34 | type_params(string n, af_dtype t, double r, double i = 0.) |
| 35 | : name(n), type(t), real(r), imag(i) {} |
| 36 | }; |
| 37 | |
| 38 | class ArrayIOType : public ::testing::TestWithParam<type_params> {}; |
| 39 |