How can you establish a friendly connection between a regular class and a class template?
Suppose we have a template class MyArray template <typename Type> class MyArray; and the usual class ArrayEditor class ArrayEditor;
How can I establish a friendly relationship between them (friend class) :
Between the ArrayEditor class and all instances of the MyArray template?
Between the ArrayEditor class and a specific instance (for example int or string)?