summaryrefslogtreecommitdiffstats
path: root/tksao/util/grid25dbase.h
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2016-10-27 18:59:29 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2016-10-27 18:59:29 (GMT)
commitd4d595fa7fb12903db9227d33d48b2b00120dbd1 (patch)
tree7d18365de0d6d1b29399b6a17c7eb01c2eb3ed49 /tksao/util/grid25dbase.h
parent949f96e29bfe0bd8710d775ce220e597064e2589 (diff)
downloadblt-d4d595fa7fb12903db9227d33d48b2b00120dbd1.zip
blt-d4d595fa7fb12903db9227d33d48b2b00120dbd1.tar.gz
blt-d4d595fa7fb12903db9227d33d48b2b00120dbd1.tar.bz2
Initial commit
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