| 3 | #define LED_ARRAY_H_ |
| 4 | |
| 5 | struct LedColumns { |
| 6 | LedColumns(const int* a, int l) : array(a), length(l) {} |
| 7 | LedColumns(const LedColumns& other) : array(other.array), length(other.length) {} |
| 8 | const int* array; |
| 9 | int length; |
| 10 | }; |
| 11 | |
| 12 | LedColumns LedLayoutArray(); |
| 13 |
no outgoing calls
no test coverage detected