Dear all, now i have a class with a enum type variable like below:enum Disc{Red, Yellow};. And a member function like this:int addDisc(int col, Disc d);.How can i call the member function in the main function. i mean i don't know how to pass the actual parameter to it. Need i declear a new variable the same as "Disc" in the class? No matter what i do, the C++ complier syas "error C2664: 'ConnectN::addDisc' : cannot convert parameter 2 from 'int' to 'Disc'"