I can not deal with the interfaces and their implementation. Please explain how to implement them correctly and how it is at least approximately done in my case. Literally, the task looks like this You have the following interface:
template<class T> class Stack { public: Stack(); ~Stack(); Stack( const Stack& ); Stack& operator=( const Stack& ); size_t Count() const; void Push( const T& ); T Рор(); // throws an exception if stack is empty private: //..... }; Please write the following: How to be done.