home *** CD-ROM | disk | FTP | other *** search
-
- // gfxerror.cpp
- //
- // Copyright (c) 1995 by Toshiaki Tsuji, all rights reserved.
-
- #include "stdgfx.h"
- #include "gfxerror.h"
-
- ERRORHANDLER::ERRORHANDLER () : SYSTEMTOOL ()
- {
- LastError = ERR_NOERROR;
- } // End of Constructor for ERRORHANDLER
-
- ERRORHANDLER::~ERRORHANDLER ()
- {
- } // End of Destructor for ERRORHANDLER
-
- void ERRORHANDLER::SetError ( ERR_TYPE Err )
- {
- LastError = Err;
- } // End of SetError for ERRORHANDLER
-
- ERR_TYPE ERRORHANDLER::GetError ()
- {
- return LastError;
- } // End of GetError for ERRORHANDLER
-
- ERRORHANDLER Error;
-
-
-