Well sort of, you can send commands to the spectrum analyzer that will cause it to return a dataset representing its currently displayed waveforms. After you receive this array of points you can then parse the data into a Vector for plotting.
The best way to show you how to do this, is for you to take a look at an instrument driver that is on our website for the hp8566b. This driver contains a function called hp8566b_read_wvfm_array that will cause it to return a set of data points representing its traces on its display. I have included it with this post, but you can also get it from the following site (scroll down til you see your model #):
http://search.ni.com/search/query.html?lk=2&rq=1&nh=500&rf=3&qm=1&ql=&pw=595&qp=%2BContentType%3AInstrumentDriver+%2BID
NetManufacturer%3A%22Hewlett-Packard%2C+Agilent+Technologies%22&qt=&layout=IDNet
It was developed to be used in CVI, but since it has a C file as its source file you can open it in either CVI or VC++ (I suspect you have both since you have CW++). Or if you want you can use the ComponentWorks Instrument Driver Factory (you should be able to find it in the Start menu under Measurement Studio >> Utility Programs) to build the driver into a dll with CVI and then you can just call its functions dynamically in your C++ app.