Bjarne Stroustrup AEIOU aeiou AEIOUxaeiou ___ #include "a9.h" #include #include using namespace std; template class Set { public: Set(); Set(const List&); void insert(const T&); bool member(const T&) const; void remove(const T&); int size() const { return itsValueCount; } List values() const; template friend Set operator+(const Set&, const Set&); template friend Set operator*(const Set&, const Set&); template friend Set operator-(const Set&, const Set&); private: };