I have a fully functioning classes and functions for a program I need to build. I'm using Visual C++ to put together the GUI, and use the existing classes and functions in the event handlers of the GUI to manage the program.
The problem is I'm having a really hard time putting together the C++ code with the GUI. For some reason even though I've included the headers, things like Linked lists and stuff but it doesn't recognize the functions or the global variables.
When creating a Windows Forms Application, where do I put the classes and functions (that are not GUI related)? Is there a special place where I need to declare them?
Any help is appreciated as I'm pretty lost at the moment
EDIT: I guess a different way of asking this questions is this; in Visual C++, when you are creating a Windows Forms Application, where do you define and declare the classes and functions that the GUI will be using?