Default constructor and destructor - must be in .cpp for proper smart_ptr handling
| 28 | |
| 29 | // Default constructor and destructor - must be in .cpp for proper smart_ptr handling |
| 30 | ScreenMap::ScreenMap() = default; |
| 31 | ScreenMap::~ScreenMap() FL_NOEXCEPT = default; |
| 32 | |
| 33 | // Helper function to extract a vector of floats from a JSON array |
nothing calls this directly
no test coverage detected