look for a class type used as a function parameter:

    funct1(B b)	// pass by value
    funct2(B* b)	// pass by pointer
    funct3(B& b)	// pass by reference