E
Ed Fair
Hi,
I am having a name collision between a library call and a class I've
created.
My class is called "socket", it abstracts a TCP socket.
In my constructors for my class, I am calling the socket library function
socket():
m_mySocket = socket(AF_INET,SOCK_STREAM,0)
My compiler is compaining "no overloaded function takes 3 parameters" while
clearly the socket library function does.
Is there a standard way to steer the compiler towards the correct function?
TIA,
ed
I am having a name collision between a library call and a class I've
created.
My class is called "socket", it abstracts a TCP socket.
In my constructors for my class, I am calling the socket library function
socket():
m_mySocket = socket(AF_INET,SOCK_STREAM,0)
My compiler is compaining "no overloaded function takes 3 parameters" while
clearly the socket library function does.
Is there a standard way to steer the compiler towards the correct function?
TIA,
ed