Click here to Skip to main content
15,887,027 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
QChartView& SysInfoWidget::chartView()
{
return mChartView;
}

What I have tried:

I tried wondering what it was. I figured it might be that chartView might inherits from QChartView.
Posted
Updated 5-Nov-20 9:26am
v2

1 solution

A method of a class does not have a type. It may return a value of some type though.

In this case, the method chartView returns a reference to an object named mChartView which is of type QChartView.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900