r94: finished c++ conversions
[ctsim.git] / include / ezplot.h
index c5838c0a5bec1b765cc79d0e55e2d1e1527c82fe..744a33d42143d3bfa17afa1c349071ef799e61e5 100644 (file)
@@ -1,3 +1,23 @@
+/*****************************************************************************
+**  This is part of the CTSim program
+**  Copyright (C) 1983-2000 Kevin Rosenberg
+**
+**  $Id: ezplot.h,v 1.5 2000/06/13 16:20:31 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
+**  published by the Free Software Foundation.
+**
+**  This program is distributed in the hope that it will be useful,
+**  but WITHOUT ANY WARRANTY; without even the implied warranty of
+**  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+**  GNU General Public License for more details.
+**
+**  You should have received a copy of the GNU General Public License
+**  along with this program; if not, write to the Free Software
+**  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+******************************************************************************/
+
 /*----------------------------------------------------------------------*/
 /*                             EZPLOT                                  */
 /*                                                                     */
@@ -6,6 +26,7 @@
 #ifndef __H_EZPLOT
 #define __H_EZPLOT
 
+
 #include <stdio.h>
 #include <stddef.h>
 #include "kstddef.h"
@@ -294,18 +315,24 @@ extern struct ezplot_var ez;
 extern bool ezplot_firstcall;   /* set to false on first call to EZSET or EZPLOT */
 
 
-/* axis.c */
-int axis_scale(double min, double max, int nint, double *minp, double *maxp, int *nintp);
-/* ezplot.c */
-int ezplot(double x[], double y[], int num);
+/* ezplot.cpp */
+SGP_ID ezplot(double x[], double y[], int num);
 void ezinit(void);
 void ezfree(void);
 void ezclear(void);
-/* ezplot1d.c */
-void ezplot_1d(double *y, int n);
-/* ezset.c */
+
+/* ezset.cpp */
 int ezset(char *command);
-/* makefmt.c */
+
+/* ezplot1d.cpp */
+void ezplot_1d(double *y, int n);
+
+/* makefmt.cpp */
 void make_numfmt(char *fmtstr, int *fldwid, int *nfrac, double min, double max, int nint);
 
+/* axis.cpp */
+int axis_scale (double min, double max, int nint, double *minp, double *maxp, int *nintp);
+
+
+
 #endif