Listing 15 Imports Cursor functions into a local scope

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

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

main()
{
   // using declarations
   using Cursor::block();
   using Cursor::line();
   using Cursor::off();
   
   block();
   getchar();
   line();
   getchar();
   off();
   getchar();
   line();
   return 0;
}

// End of File