Exemplo n.º 1
0
const ATextOdometer ATextOdometer::operator --(int)
{
  ATextOdometer cRet(*this);
  _dec();
  return cRet;
}
Exemplo n.º 2
0
// scalar multiplication
XSQUARE_MATRIX XSQUARE_MATRIX::operator *(const double &i_dRHO)  const
{
	XSQUARE_MATRIX cRet(*this);
	cRet *= i_dRHO;
	return cRet;
}
Exemplo n.º 3
0
const ATextOdometer ATextOdometer::operator ++(int)
{
  ATextOdometer cRet(*this);
  _inc();
  return cRet;
}