Listing 16 Makes Cursor identifiers available globally

// tcursor.cpp:     Changes the shape
//                  of the cursor

#include <stdio.h>
#include "cursor.h"

main()
{
   // A using directive
   using namespace Cursor;
   
   block();
   getchar();
   line();
   getchar();
   off();
   getchar();
   line();
   return 0;
}

// End of File