| 344 | // Want to avoid importing <algorithm> in the header... |
| 345 | template <typename T> |
| 346 | static T Max(const T& a, const T& b) |
| 347 | { |
| 348 | return (a > b) ? a : b; |
| 349 | } |
| 350 | |
| 351 | private: |
| 352 | vtkStructuredData(const vtkStructuredData&) = delete; |
no outgoing calls