B
bpazolli
I've just finished a fairly lengthy "for dummies" book in C++ (the all
in one desk reference edition). So I'm now starting to try and get
into actual programming using wxWidgets through wxDev-C++. Anyhow that
is beside the point I have a function in one of the auto-generated
documents that look like.
frOne::frOne(wxWindow *parent, wxWindowID id, const wxString &title,
const wxPoint &position, const wxSize& size, long style)
: wxFrame(parent, id, title, position, size, style)
{
// function stuff
}
I want to know what the wxFrame part means on a general sense. Like I
know frOne is the initialisation member function of the frOne class
but the wxFrame part tagged onto with a single colon I have no idea
what it means in the general structure of things. I'm not asking for a
detail description of the wxFrame function just the basic what it
means when you tag something on like that. If you get what I mean.
Ben Pazolli
in one desk reference edition). So I'm now starting to try and get
into actual programming using wxWidgets through wxDev-C++. Anyhow that
is beside the point I have a function in one of the auto-generated
documents that look like.
frOne::frOne(wxWindow *parent, wxWindowID id, const wxString &title,
const wxPoint &position, const wxSize& size, long style)
: wxFrame(parent, id, title, position, size, style)
{
// function stuff
}
I want to know what the wxFrame part means on a general sense. Like I
know frOne is the initialisation member function of the frOne class
but the wxFrame part tagged onto with a single colon I have no idea
what it means in the general structure of things. I'm not asking for a
detail description of the wxFrame function just the basic what it
means when you tag something on like that. If you get what I mean.
Ben Pazolli