operator()
1234
struct myclass { int operator()(int a) {return a;} } myobject; int x = myobject (0); // function-like syntax with object myobject