Hi.
Can you explain to me on how to "inherit" (if that's the right word) stuff from a header file, and on how to write one? (A header file)
Like if i wrote this;
class Foo {
int a = 123;
}
in a header, how would i call it?
For example, how would i do this:
Foo(); //Calls the Foo class
Using classes was just an example.