Now I am struggling with CArrayEx class which is one of articles in codeproject
The problem is that the CArrayEx class isn't able to compile at all in VS2008 environment
I think CArrayEx class was designed to VC6.0 environment
So I want to port this class to VS2008 project
but, I don't get the exact point to correct it, furthermore I can't find the starting point - the error code was C2676
#include <afxtempl.h>
#define DATA_ACCESS_OPERATOR(i) (m_pData[i]) // 10 times faster
#define FAST_ACCESS_OPERATOR(var,i) ((var).GetData()[(i)])
....
BOOL operator <= (const CArrayEx &x) const;
...
This is one sample function
template <class TYPE, class ARG_TYPE> inline BOOL CArrayEx<TYPE, ARG_TYPE>::operator <= (const CArrayEx &x) const
{
register int i;
register int nSize(GetSize());
if(nSize != x.GetSize())
{
return FALSE;
}
for(i = 0;i < nSize;i ++)
{
if(!(DATA_ACCESS_OPERATOR(i) <= FAST_ACCESS_OPERATOR(x,i))) //<-- error C2676
{
return FALSE;
}
}
return TRUE;
}
I think it's about definition problem
Does anybody can teach me the starting point to correct this class in VS2008 project?
The problem is not the CArrayEx class itself but the operator overloading problem. I think I missed the point. I declared a point class and passed it as a template arguments of the CArrayEx class like this
typedef CArrayEx<point,point&> multipoint;
The compiler complain about the missing operator '<=' in which the point class didn't have so, I added the '<=' operator in the point class, then I solved my problem.
BOOL operator <= (const point& oper)
{
throw NOT_YET_IMPLEMENTED;
}
Thank you.