X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=include%2Fsgp.h;h=174d83b00486b602156e6f60c2b5213103571450;hb=0aa7e912bb58a67d9952c83767ce244b974763ab;hp=4ee4638d346d84eda52d492c17fabe1418a8828c;hpb=baba40afccf75bd75d612980fee023ff22c40952;p=ctsim.git diff --git a/include/sgp.h b/include/sgp.h index 4ee4638..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.19 2000/12/04 04:15:48 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; }