A
anonymous
I have a function get with 3 parameters
Get(par1,par2,par3).
This function is called i main:
main
{....
Get(par1,par2,par3);
....}
I would like to put this function in class.
Class
{Public:
Get(par1,par2,par3)
{....};
}
But now when I call this function:Get(par1,par2,par3);
I get the following error:undeclared identifier
What am I doing incorrect?
Get(par1,par2,par3).
This function is called i main:
main
{....
Get(par1,par2,par3);
....}
I would like to put this function in class.
Class
{Public:
Get(par1,par2,par3)
{....};
}
But now when I call this function:Get(par1,par2,par3);
I get the following error:undeclared identifier
What am I doing incorrect?