X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=include%2Fsgp.h;h=174d83b00486b602156e6f60c2b5213103571450;hp=fce79a67509b650629d45c3d1ad8cd6e4cdb0aac;hb=55426f4170ed9dc777c3cec3741e4a59e6eebd38;hpb=3147cd44cff6132e51eac1a179c1fc3d405faacc diff --git a/include/sgp.h b/include/sgp.h index fce79a6..174d83b 100644 --- a/include/sgp.h +++ b/include/sgp.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2000 Kevin Rosenberg ** -** $Id: sgp.h,v 1.18 2000/09/04 09:06:46 kevin Exp $ +** $Id: sgp.h,v 1.21 2000/12/06 15:17:51 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 @@ -47,7 +47,7 @@ extern "C" { #endif #include - +using namespace std; class SGPDriver { private: @@ -86,10 +86,10 @@ public: { return m_sWindowTitle; } bool isWX () const - { return (m_idDriver & SGPDRIVER_WXWINDOWS); } + { return (m_idDriver & SGPDRIVER_WXWINDOWS ? true : false); } bool isG2 () const - { return (m_idDriver & SGPDRIVER_G2); } + { return (m_idDriver & SGPDRIVER_G2 ? true : false); } int idG2 () const { return m_idG2; } @@ -171,7 +171,7 @@ public: MARK_BSQUARE = 9, // big open square MARK_BDIAMOND = 10, // big open diamond }; - static const int MARK_COUNT = 11; + enum { MARK_COUNT = 11, }; static const unsigned char MARKER_BITMAP[MARK_COUNT][5]; SGP (const SGPDriver& driver);