B
BjoernJackschina
Hello,
Up to now I failed to find out how I can fill a container class like
following example:
template<class T>
class field
{
explicit field(int value=0):n(value),t(new T[groesse]){}
private:
int n;
T* t;};
I need the right function and I would be glad about any example.
Up to now I failed to find out how I can fill a container class like
following example:
template<class T>
class field
{
explicit field(int value=0):n(value),t(new T[groesse]){}
private:
int n;
T* t;};
I need the right function and I would be glad about any example.