diff framework/SVFileReader.h @ 53:de2b3c6479c8

* Introduce new Transform class which contains data necessary to describe the context for a plugin -- the plugin's name and output, the step/block size etc (formerly spread across ExecutionContext and TransformFactory). Other code hasn't been updated to use this yet. * Rename existing Transform stuff to Transformers (because they run Transforms) I'm still not 100% sure about this change, don't rely on it.
author Chris Cannam
date Mon, 05 Nov 2007 15:31:06 +0000
parents 9ea770d93fae
children a798f5e6fc5e
line wrap: on
line diff
--- a/framework/SVFileReader.h	Fri Nov 02 14:12:17 2007 +0000
+++ b/framework/SVFileReader.h	Mon Nov 05 15:31:06 2007 +0000
@@ -17,8 +17,8 @@
 #define _SV_FILE_READER_H_
 
 #include "layer/LayerFactory.h"
-#include "plugin/transform/Transform.h"
-#include "plugin/transform/PluginTransform.h"
+#include "plugin/transform/Transformer.h"
+#include "plugin/transform/PluginTransformer.h"
 
 #include <QXmlDefaultHandler>
 
@@ -216,10 +216,10 @@
     Model *m_currentDerivedModel;
     int m_currentDerivedModelId;
     PlayParameters *m_currentPlayParameters;
-    QString m_currentTransform;
-    Model *m_currentTransformSource;
-    PluginTransform::ExecutionContext m_currentTransformContext;
-    QString m_currentTransformConfiguration;
+    QString m_currentTransformer;
+    Model *m_currentTransformerSource;
+    PluginTransformer::ExecutionContext m_currentTransformerContext;
+    QString m_currentTransformerConfiguration;
     QString m_datasetSeparator;
     bool m_inRow;
     bool m_inLayer;