So, in C++ I have a class Vote which has a send function to send the vote over the network. This send function in the class Vote, makes use of the send function from sys/socket.h. When I compile, I get errors that basically say it's using Vote::send rather than sys/socket.h::send within Vote::send. How do I resolve this name conflict?So, in C++ I have a class Vote which has a send