X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fbackgroundsupr.h;h=f1591651915dc56d431ddef6c1c7449f5af2e031;hp=e362e4061c670f2bb924b9d919a97a6f5b82dab0;hb=f7ee98f7d964ed361068179f0e7ea4475ed1abdf;hpb=87748a0c3854cd5b2660baad217cf7071cb24be2 diff --git a/src/backgroundsupr.h b/src/backgroundsupr.h index e362e40..f159165 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.12 2002/10/24 20:09:55 kevin Exp $ +** $Id$ ** ** 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 @@ -57,13 +57,13 @@ private: SupervisorThread* m_pMyThread; wxWindow* m_pParentFrame; BackgroundProcessingDocument* m_pDocument; - const std::string m_strProcessTitle; - + const wxString m_strProcessTitle; + const unsigned int m_iTotalUnits; int m_iNumThreads; volatile bool m_bDone; volatile bool m_bFail; - std::string m_strFailMessage; + wxString m_strFailMessage; volatile bool m_bCancelled; volatile int m_iRunning; volatile unsigned int m_iUnitsDone; @@ -88,7 +88,7 @@ public: MSG_WORKER_THREAD_FAIL = 7507, // sent by workers when they fail }; - BackgroundSupervisor (SupervisorThread* pMyThread, wxWindow* pParentFrame, BackgroundProcessingDocument* pDocument, const char* const pszProcessTitle, + BackgroundSupervisor (SupervisorThread* pMyThread, wxWindow* pParentFrame, BackgroundProcessingDocument* pDocument, wxChar const* pszProcessTitle, int iTotalUnits); BackgroundSupervisor () @@ -102,10 +102,10 @@ public: bool start(); virtual void onDone() {}; - + virtual void onCancel(); - virtual void onWorkerFail(int iThread, std::string strFailMessage); + virtual void onWorkerFail(int iThread, const wxString& strFailMessage); virtual void onWorkerUnitTick(); virtual void onWorkerDone(int iThread); @@ -116,7 +116,7 @@ public: bool isDone() const {return m_bDone;} void setDone() { m_bDone = true; } bool fail() const {return m_bFail;} - const std::string& getFailMessage() const { return m_strFailMessage; } + const wxString& getFailMessage() const { return m_strFailMessage; } bool cancelled() const {return m_bCancelled;} int getNumWorkers() const { return m_iNumThreads; }