X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fbackgroundsupr.h;fp=src%2Fbackgroundsupr.h;h=ada1550f8c4e6ca85d314c75907ca2de55b4815a;hp=2ee7db6662ebd652b49a5cf94f9dd2c94be5af2a;hb=d77c9d135405e077047ef3426a54470c144cdd34;hpb=793b8154fdc069e43a939852657e89847d01ee77 diff --git a/src/backgroundsupr.h b/src/backgroundsupr.h index 2ee7db6..ada1550 100644 --- a/src/backgroundsupr.h +++ b/src/backgroundsupr.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2001 Kevin Rosenberg ** -** $Id: backgroundsupr.h,v 1.8 2001/03/04 22:30:19 kevin Exp $ +** $Id: backgroundsupr.h,v 1.9 2001/03/05 17:26:46 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -49,6 +49,7 @@ public: // Pure virtual class for BackgroundSupervisor that can communication // with BackgroundManager via messages class BackgroundWorkerThread; +class BackgroundProcessingDocument; class BackgroundSupervisor : public wxEvtHandler { private: @@ -56,7 +57,7 @@ private: SupervisorThread* m_pMyThread; wxFrame* m_pParentFrame; - wxDocument* m_pDocument; + BackgroundProcessingDocument* m_pDocument; const std::string m_strProcessTitle; const unsigned int m_iTotalUnits; @@ -68,7 +69,6 @@ private: volatile int m_iRunning; unsigned int m_iUnitsDone; Timer* m_pTimer; - bool m_bBackgroundTaskAdded; bool m_bWorkersDeleted; typedef std::vector ThreadContainer; @@ -89,7 +89,7 @@ public: MSG_WORKER_THREAD_FAIL = 7507, // sent by workers when they fail }; - BackgroundSupervisor (SupervisorThread* pMyThread, wxFrame* pParentFrame, wxDocument* pDocument, const char* const pszProcessTitle, + BackgroundSupervisor (SupervisorThread* pMyThread, wxFrame* pParentFrame, BackgroundProcessingDocument* pDocument, const char* const pszProcessTitle, int iTotalUnits); BackgroundSupervisor () @@ -105,7 +105,6 @@ public: virtual void onDone() {}; virtual void onCancel(); - virtual void onAckDocumentRemove(); virtual void onWorkerFail(int iThread, std::string strFailMessage); virtual void onWorkerUnitTick();