This is my attempt at passing a 2-D vector of arbitrary element types, inner and outer lengths to a class and printing its contents.
There are a few issues but I'm not quite sure how to resolve.
<
template <typename V, typename I>
class myVec{
private:
I rows;
I cols;
std::vector< std::vector<V> > vec( rows , vector<int> (cols));