summaryrefslogtreecommitdiffstats
path: root/tksao/util/grid25dbase.h
diff options
context:
space:
mode:
Diffstat (limited to 'tksao/util/grid25dbase.h')
-rw-r--r--tksao/util/grid25dbase.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/tksao/util/grid25dbase.h b/tksao/util/grid25dbase.h
new file mode 100644
index 0000000..adfe844
--- /dev/null
+++ b/tksao/util/grid25dbase.h
@@ -0,0 +1,26 @@
+// Copyright (C) 1999-2016
+// Smithsonian Astrophysical Observatory, Cambridge, MA, USA
+// For conditions of distribution and use, see copyright notice in "copyright"
+
+#ifndef __grid25dbase_h__
+#define __grid25dbase_h__
+
+#include "gridbase.h"
+
+class Grid25dBase : public GridBase {
+ public:
+ Grid25dBase(Widget*);
+ Grid25dBase(Widget*, const char*);
+ virtual ~Grid25dBase();
+
+ int gLine(int n, float* x, float* y);
+ int gQch(float*, float*);
+ int gMark(int, const float*, const float*, int) {return 1;}
+ int gText(const char* txt, float x, float y, const char* just,
+ float upx, float upy);
+ int gTxExt(const char*, float, float, const char*,
+ float, float, float*, float*);
+ int gScales(float *alpha, float *beta);
+};
+
+#endif