Hi I don't really know where to put this but how does one use WxWidgets with c++. I just need to know the syntax or structure of it.
For example:
What would wxwidgets equivalent be for the native code...
#include <iostream>
int main()
{
int num1, num2, total;
std::cout<<"Enter first Number\n";
std::cin>>num1;
std::cout<<"Now enter the second Number to be added\n";
std::cin>>num1;
total = num1 + num2;
and so on...
return 0;
How would this fit into a form is what I'm asking?
Thanks in advance :)