I have this line that I need to be able to run with the code I am writing:
euro(2, Regular)
euro is an object from a class named MainControl, and I have an enum defined:
enum VoterType { All, Regular, Judge };
Basically I understand that we want to use some method from the class named MainControl, but I don't see the name of the method that should be used?
Given the fact that this function returns void, how exactly is the declaration supposed to look like in the class MainControl?