Need help on starting this. Should be placed inline headerfile.
A template class called dyArray. It will contain theseprivate members:
- A pointer for a 2D dynamic array. The pointer will be oftemplated type.
- An integer variable for the number of rows in an inputfile.
- An integer variable for the number of columns in an input file(AKA the number of elements per row).
The template class should contain these publicmembers:
- A default constructor that sets the array pointer to null andboth numbers of rows and columns to zero.
- A constructor which takes two integer parameters for thenumbers of rows and columns in an input file.
- A destructor that properly
OROR