summaryrefslogtreecommitdiffstats
path: root/src/bltGrElemOp.h
diff options
context:
space:
mode:
authorjoye <joye>2013-09-09 21:05:32 (GMT)
committerjoye <joye>2013-09-09 21:05:32 (GMT)
commit3eae099de0827ab3c7146b33cb53e99d06349f21 (patch)
treeeedf6ccb718d607b8b0a6197be1b7dffb20a8f6b /src/bltGrElemOp.h
parent938d53911cf6f242cab8e10011fd6cfd215ea655 (diff)
downloadblt-3eae099de0827ab3c7146b33cb53e99d06349f21.zip
blt-3eae099de0827ab3c7146b33cb53e99d06349f21.tar.gz
blt-3eae099de0827ab3c7146b33cb53e99d06349f21.tar.bz2
*** empty log message ***
Diffstat (limited to 'src/bltGrElemOp.h')
-rw-r--r--src/bltGrElemOp.h21
1 files changed, 1 insertions, 20 deletions
diff --git a/src/bltGrElemOp.h b/src/bltGrElemOp.h
index 60a8fc4..e84d343 100644
--- a/src/bltGrElemOp.h
+++ b/src/bltGrElemOp.h
@@ -28,11 +28,9 @@
#define _BLT_GR_ELEM_H
#include <bltVector.h>
-#include <bltDataTable.h>
#define ELEM_SOURCE_VALUES 0
#define ELEM_SOURCE_VECTOR 1
-#define ELEM_SOURCE_TABLE 2
#define SEARCH_X 0
#define SEARCH_Y 1
@@ -175,20 +173,6 @@ typedef struct {
Blt_VectorId vector;
} VectorDataSource;
-typedef struct {
- Blt_Table table; /* Data table. */
- Blt_TableColumn column; /* Column of data used. */
- Blt_TableNotifier notifier; /* Notifier used for column destroy
- * event. */
- Blt_TableTrace trace; /* Trace used for column
- * (set/get/unset). */
- Blt_HashEntry *hashPtr; /* Pointer to the entry of the data
- * source in graph's hash table of
- * datatables. One graph may use
- * multiple columns from the same data
- * table. */
-} TableDataSource;
-
/*
* The data structure below contains information pertaining to a line vector.
* It consists of an array of floating point data values and for convenience,
@@ -200,10 +184,7 @@ typedef struct {
* ELEM_SOURCE_TABLE, or ELEM_SOURCE_VALUES
*/
Element *elemPtr; /* Element associated with vector. */
- union {
- TableDataSource tableSource;
- VectorDataSource vectorSource;
- };
+ VectorDataSource vectorSource;
double *values;
int nValues;
int arraySize;