Exemplo n.º 1
0
int _tmain(int argc, _TCHAR* argv[])
{
	cout << endl;

	Demo t;
	t.setA(11);
	t.setB(22);
	t.setB(22);

	cout << endl;

	cout << t.do_something() << endl;

	return 0;
}