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 need to create an instance of the class (an object) in order to call his member functions.
In this particular code the member functions has no reason to be instance and could be static:
class foo{ public: static void bar(int val) { //do something } }; int main() { foo::bar(10); }