Hello ladies and gents,
I was just wondering how you would implement this into C if it actually is possible, if not, how do you guys implement an equal way of dealing with this in C ?
For instance, if you would have classes like this in C++:
class Lightwave
{
...
};
class Modeler : public Lightwave
{
...
};
class Layout : public Lightwave
{
...
};
int main()
{
cout << "Press enter to exit.\n";;
cin.ignore(cin.rdbuf()->in_avail() + 1);
return 0;
}
Is it all done with structures then?