We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
I am trying to use a class in Keil for Arm, but when I define my class in the Header the compiler complains that "class" is not known.
If I move the class definition to the *.cpp file, then the compiler seems to be happy. However, now I have no way to use this class in another module because the class definition is not in the header.
What is it that I need to do to resolve this issue?