Connecting Tech Pros Worldwide Forums | Help | Site Map

Error C2555 with pointer to class with no template instantiation?

erictham115@gmail.com
Guest
 
Posts: n/a
#1: Mar 5 '07
Error C2555

c:\C++ projects\stat1\stdmatrix_adapt.h(41) : error C2555:
'std_tools::Matrix_adapter<T>::at': overriding virtual function return
type differs and is not covariant from 'ple::imtx_impl<T>::at'

//in my program: the derived class
template <class T>
class Matrix_adapter : public ple::imtx_impl<T{
protected:
Matrix* m_;
public:
virtual const T& at(mtx_size i0, mtx_size i1) const //mtx_size -->
unsigned int
{return m_->at(i0, i1);}
}
// the base class
template <class T>
class imtx_impl : public imtx<T{
virtual const T& at(mtx_size i0, mtx_size i1) const=0;

/*Notice Matrix_adapter.at returns a pointer to another class Matrix
m_
The problem arises as this class Matrix has no template instantiation
and i set the virtual function at return as double, the same as T */

class Matrix : public GeneralMatrix
public:{
const double& at(unsigned int pos0, unsigned int pos1) const { return
v_.at(c_(pos0, pos1)); }
}

// However in my main program initiating T as double in the derived
class still gives the error C2555.

Matrix_adapter <doublematx;

Am at loss what to do now.. any people care to help... ?


Ian Collins
Guest
 
Posts: n/a
#2: Mar 5 '07

re: Error C2555 with pointer to class with no template instantiation?


erictham115@gmail.com wrote:
Quote:
Error C2555
>
c:\C++ projects\stat1\stdmatrix_adapt.h(41) : error C2555:
'std_tools::Matrix_adapter<T>::at': overriding virtual function return
type differs and is not covariant from 'ple::imtx_impl<T>::at'
>
//in my program: the derived class
template <class T>
class Matrix_adapter : public ple::imtx_impl<T{
protected:
Matrix* m_;
public:
virtual const T& at(mtx_size i0, mtx_size i1) const //mtx_size -->
unsigned int
{return m_->at(i0, i1);}
}
// the base class
template <class T>
class imtx_impl : public imtx<T{
virtual const T& at(mtx_size i0, mtx_size i1) const=0;
>
/*Notice Matrix_adapter.at returns a pointer to another class Matrix
m_
The problem arises as this class Matrix has no template instantiation
and i set the virtual function at return as double, the same as T */
>
class Matrix : public GeneralMatrix
public:{
const double& at(unsigned int pos0, unsigned int pos1) const { return
v_.at(c_(pos0, pos1)); }
}
>
// However in my main program initiating T as double in the derived
class still gives the error C2555.
>
Matrix_adapter <doublematx;
>
Am at loss what to do now.. any people care to help... ?
>
The code fragments as posted look OK, can you reproduce the problem with
a self contained example?

--
Ian Collins.
erictham115@gmail.com
Guest
 
Posts: n/a
#3: Mar 5 '07

re: Error C2555 with pointer to class with no template instantiation?


On Mar 5, 1:50 pm, Ian Collins <ian-n...@hotmail.comwrote:
Quote:
erictham...@gmail.com wrote:
Quote:
Error C2555
>
Quote:
c:\C++ projects\stat1\stdmatrix_adapt.h(41) : error C2555:
'std_tools::Matrix_adapter<T>::at': overriding virtual function return
type differs and is not covariant from 'ple::imtx_impl<T>::at'
>
Quote:
//in my program: the derived class
template <class T>
class Matrix_adapter : public ple::imtx_impl<T{
protected:
Matrix* m_;
public:
virtual const T& at(mtx_size i0, mtx_size i1) const //mtx_size -->
unsigned int
{return m_->at(i0, i1);}
}
// the base class
template <class T>
class imtx_impl : public imtx<T{
virtual const T& at(mtx_size i0, mtx_size i1) const=0;
>
Quote:
/*Notice Matrix_adapter.at returns a pointer to another class Matrix
m_
The problem arises as this class Matrix has no template instantiation
and i set the virtual function at return as double, the same as T */
>
Quote:
class Matrix : public GeneralMatrix
public:{
const double& at(unsigned int pos0, unsigned int pos1) const { return
v_.at(c_(pos0, pos1)); }
}
>
Quote:
// However in my main program initiating T as double in the derived
class still gives the error C2555.
>
Quote:
Matrix_adapter <doublematx;
>
Quote:
Am at loss what to do now.. any people care to help... ?
>
The code fragments as posted look OK, can you reproduce the problem with
a self contained example?
>
--
Ian Collins.- Hide quoted text -
>
- Show quoted text -
Ya i thought the derived and base classes look ok. Except that the
class that the pointer points is not a template class.

Victor Bazarov
Guest
 
Posts: n/a
#4: Mar 5 '07

re: Error C2555 with pointer to class with no template instantiation?


erictham115@gmail.com wrote:
Quote:
On Mar 5, 1:50 pm, Ian Collins <ian-n...@hotmail.comwrote:
Quote:
>erictham...@gmail.com wrote:
Quote:
>>Error C2555
>>
Quote:
>>c:\C++ projects\stat1\stdmatrix_adapt.h(41) : error C2555:
>>'std_tools::Matrix_adapter<T>::at': overriding virtual function
>>return type differs and is not covariant from
>>'ple::imtx_impl<T>::at'
>>
Quote:
>>//in my program: the derived class
>>template <class T>
>>class Matrix_adapter : public ple::imtx_impl<T{
>>protected:
>> Matrix* m_;
>>public:
>> virtual const T& at(mtx_size i0, mtx_size i1) const //mtx_size
>>--unsigned int
>> {return m_->at(i0, i1);}
>>}
>>// the base class
>>template <class T>
>>class imtx_impl : public imtx<T{
>> virtual const T& at(mtx_size i0, mtx_size i1) const=0;
>>
Quote:
>>/*Notice Matrix_adapter.at returns a pointer to another class Matrix
>>m_
>>The problem arises as this class Matrix has no template
>>instantiation and i set the virtual function at return as double,
>>the same as T */
>>
Quote:
>>class Matrix : public GeneralMatrix
>>public:{
>>const double& at(unsigned int pos0, unsigned int pos1) const {
>>return v_.at(c_(pos0, pos1)); }
>>}
>>
Quote:
>>// However in my main program initiating T as double in the derived
>>class still gives the error C2555.
>>
Quote:
>>Matrix_adapter <doublematx;
>>
Quote:
>>Am at loss what to do now.. any people care to help... ?
>>
>The code fragments as posted look OK, can you reproduce the problem
>with a self contained example?
>>
>--
>Ian Collins.- Hide quoted text -
>>
>- Show quoted text -
>
Ya i thought the derived and base classes look ok. Except that the
class that the pointer points is not a template class.
There is no such think in C++ as "template class". There is a class
template and there is a class generated from a template (a template
instantiation). Please adjust your statement and explain what (or
which) you mean.

You didn't post what 'imtx' template looked like, you didn't post
any code that uses your template (which would show instantiation of it
and the template arguements). Please consult with FAQ 5.8 for further
clarification.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask


Closed Thread