#ifndef TECHNIQUE_H #define TECHNIQUE_H #include "layers/Layer.h" #include class Technique { private: std::vector layers; vtkSmartPointer points; vtkSmartPointer data; void setupInteractions(); public: Technique(); void addLayer(Layer *l); void removeLayer(Layer *l); void updateData(int t); int numberOfLayers(); }; #endif