I am having problems calling my functions from my main program. These functions HAVE to be in my class. How do I access them from my int main()?
#inc
You can either declare those methods as static or use an object to make the calls:
myCountingSemaphoreUsingBinarySemaphore s; s.waitSemaphore(wrt);