// tcursor.cpp: Changes the shape
// of the cursor
#include <stdio.h>
#include "cursor.h"
main()
{
Cursor::block();
getchar();
Cursor::line();
getchar();
Cursor::off();
getchar();
Cursor::line();
return 0;
}
// End of File