I have some understanding problems in C++ with parameterised constructors. If I have a class with one constructor which have two function parameters, how can i instantiate it in an other class header file?
For example:
public:
MyFunction myfunction(param1, param2); //makes an error
How can i declare an object like this?
param1andparam2types?