This is a Linker error that has many causes, but usually has something to do with a missing function body after you have placed a prototype for a function in a class and then try to call it. If you are coding the function outside of the class don't forget to use the scope resolution operator to identify the class that it is a member of. This can by caused by other things as well though.

-Disguised