示例#1
0
bool operator==(const Dimension& lhs, const Dimension& rhs) {
	return lhs.GetAbsolute() == rhs.GetAbsolute() && 
		lhs.GetRelative() == rhs.GetRelative();
}