I am migration a plugin to R20.
Now SortedArray() gives me an error "Namespace Maxon has no member class "SortedArray"
I tried #include <sortedarray.h>, but the file could not be found (even with " instead of <>)
struct MySortedIntegerArray : public maxon::SortedArray<MySortedIntegerArray, maxon::BaseArray<Int> >
{
// your sorted array must implement a LessThan() method
static inline maxon::Bool LessThan(Int a, Int b) { return a < b; }
};