示例#1
0
		TestObject TestingWS::wsmeth3(std::string a) {
			TestObject obj;
			obj.setA(3);
			obj.setB(4);
			obj.setC(a);
			obj.setD(5.0);
			obj.setE(6.0);
			obj.setF(true);
			obj.setG(13);
			obj.setH(2);
			obj.setI(-2);
			obj.setJ(-3);
			obj.setK(-4);
			obj.setL(-13);
			std::cout << ("WS Method wsmeth3 called with args - " + obj.toString()) << std::endl;
			return obj;
		}