#ifndef OU_LINK_H #define OU_LINK_H template class OULink { template friend class OULinkedList; template friend class OULinkedListEnumerator; private: T data{}; // data item of any type OULink* next = NULL; // pointer to next link public: OULink(T item); virtual ~OULink(); }; // Add your implementation below this line. Do not add or modify anything above this line. #endif // !OU_LINK