r648: no message
[ctsim.git] / include / nographics.h
1 /*****************************************************************************
2 ** FILE IDENTIFICATION
3 **
4 **   Name:          nographics.h
5 **   Purpose:       Headers for empty duplicate of graphics functions
6 **   Programmer:    Kevin Rosenberg
7 **   Date Started:  Mar 2001
8 **
9 **  This is part of the CTSim program
10 **  Copyright (c) 1983-2001 Kevin Rosenberg
11 **
12 **  $Id: nographics.h,v 1.2 2001/03/30 19:17:32 kevin Exp $
13 **
14 **  This program is free software; you can redistribute it and/or modify
15 **  it under the terms of the GNU General Public License (version 2) as
16 **  published by the Free Software Foundation.
17 **
18 **  This program is distributed in the hope that it will be useful,
19 **  but WITHOUT ANY WARRANTY; without even the implied warranty of
20 **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 **  GNU General Public License for more details.
22 **
23 **  You should have received a copy of the GNU General Public License
24 **  along with this program; if not, write to the Free Software
25 **  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26 ******************************************************************************/
27
28 #ifndef __NOGRAPHICS_H_
29 #define __NOGRAPHICS_H_
30
31 #ifdef __GNUG__
32 #pragma interface "nographics.h"
33 #endif
34
35 #ifdef HAVE_WXWINDOWS
36 class EZPlot;
37 class wxWindow;
38 class wxEZPlotDialog;
39
40 class EZPlotDialog
41 {
42 private:
43   wxEZPlotDialog* m_pDialog;
44
45 public:
46   EZPlotDialog (wxWindow *parent = NULL, bool bCancelButton = false);
47
48   EZPlot* getEZPlot ();
49   int ShowModal();
50 };
51 #endif
52
53 #endif
54