X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fctsim.h;h=ff8588c2edf5e87407fd52604eedacf5a52fd1d4;hp=27fb0ee904d16127a49bfd5971c3b2ff8090234a;hb=f1303ea0f1188b0a89846c67b5783f596e7ba1b7;hpb=b161e504433ad5d62dd2ecb0e325da73718f00a3 diff --git a/src/ctsim.h b/src/ctsim.h index 27fb0ee..ff8588c 100644 --- a/src/ctsim.h +++ b/src/ctsim.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: ctsim.h,v 1.48 2001/02/20 00:07:56 kevin Exp $ +** $Id: ctsim.h,v 1.49 2001/02/21 20:13:03 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 @@ -186,6 +186,7 @@ private: bool m_bAdvancedOptions; bool m_bSetModifyNewDocs; + bool m_bVerboseLogging; wxDocManager* m_docManager; MainFrame* m_pFrame; @@ -227,6 +228,8 @@ public: void getCompatibleImages (const ImageFileDocument* pIFDoc, std::vector& vecIF); bool getAdvancedOptions() const { return m_bAdvancedOptions; } void setAdvancedOptions (bool bAdv) { m_bAdvancedOptions = bAdv; } + bool getVerboseLogging() const { return m_bVerboseLogging; } + void setVerboseLogging (bool bVerbose) { m_bVerboseLogging = bVerbose; } void setIconForFrame (wxFrame* pFrame); wxConfig* getConfig()