C++ not recognizing my class
- by rlb.usa
I keep getting class undefined error from Visual Studio with my C++ code.
My file looks like this:
namespace myProject;
scope myProject{
class FreeFormWindowsWidgetWindow : public WindowsWidget{
// shell
}
}
But when I put FreeFormWindowsWidgetWindow in the same file as my other classes, it sees it. It doesn't seem to see anything in this file.
How can I fix it and keep FreeFormWidgetWindow in its own file?