예제 #1
0
파일: stdafx.cpp 프로젝트: CAHbl4/CPP
Test operator+(int lval, const Test& rval){
	int tmp;
	tmp = lval + rval.GetData();
	return Test(tmp);
}