예제 #1
0
파일: s2.cpp 프로젝트: AIxi0425/cpptutorial
int main()
{
	MyClass foo (10);
	const MyClass bar (20);
	foo.get() = 16;
	cout << foo.get() << endl;
	cout << bar.get() << endl;

	return 0;
}
예제 #2
0
 friend std::size_t hash_value(const MyClass &o)
 {
     return boost::hash<int>()(o.get());
 }
예제 #3
0
파일: s2.cpp 프로젝트: AIxi0425/cpptutorial
void print (const MyClass& arg)
{
	cout << arg.get() << endl;
}