예제 #1
0
파일: test.cpp 프로젝트: zneo/leetcode
Number Complex::operator + (Number const &n) const
{ 
  return n.complexAdd (*this); 
}
예제 #2
0
파일: test.cpp 프로젝트: zneo/leetcode
Number Number::complexAdd (Number const &n) const 
{
  return rep->complexAdd (n);
}