Include Command
pag_example

Our main function starts like this:

void main()
{

First we create an object t of the Include_Test class.

Definition: include.cpp:5

Then we call the example member function

t.example();
void example()
a member function

After that our little test routine ends.

}