home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
POINT Software Programming
/
PPROG1.ISO
/
c
/
fli106c
/
blcls.cpp
< prev
next >
Wrap
C/C++ Source or Header
|
1992-03-11
|
930b
|
46 lines
//
// The Fusion Library Interface for DOS
// Version 1.06c
// Copyright (C) 1990, 1991, 1992
// Software Dimensions
//
// BlazeClass
//
#include "fli.h"
#ifdef __BCPLUSPLUS__
#pragma hdrstop
#endif
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
//
// - operator
//
// Clear the entire display
//
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
BlazeClass& BlazeClass::operator- ()
{
BlazeClass Blaze;
Blaze.EraseArea(0,0,ScreenWidth,ScreenHeight,7);
return *this;
}
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
//
// -- operator
//
// Clear only the current text window
//
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
BlazeClass& BlazeClass::operator-- ()
{
BlazeClass Blaze;
Blaze.EraseArea(WinX,WinY,WinWide,WinHigh,7);
return *this;
}