What task has "&" in the following c++ code?

Hi all,

I need to understand the task of "&" here. it uses without varible and with varible.

//Sofi Pashmak

1
2
3
TScanner(const TScanner &);//What does you mean by "&" here?
void makeFilter(int noOBS, const int* observation,
                    const TFilterDescriptor& filterDescriptor);//What does you mean by "TFilterDescriptor&" here? 
The & there denotes a reference!
http://www.cprogramming.com/tutorial/references.html

Best of luck.

-Albatross
Topic archived. No new replies allowed.