]> Creatis software - openheart.git/blobdiff - Common/vtkOptimizedImageData.cxx
commit all the files for the first time
[openheart.git] / Common / vtkOptimizedImageData.cxx
diff --git a/Common/vtkOptimizedImageData.cxx b/Common/vtkOptimizedImageData.cxx
new file mode 100644 (file)
index 0000000..d9f564b
--- /dev/null
@@ -0,0 +1,20 @@
+/**
+* Progam made by Olivier Bernard, associate professor
+* at Institut National des Sciences Appliquees (INSA) Lyon,
+* CREATIS-LRMN Laboratory,
+* 69621 Villeurbanne, France,
+* 31th of march 2011
+*/
+
+#include "vtkOptimizedImageData.h"
+
+using namespace std;
+
+
+template<class T>
+void vtkOptimizedImageData<T>::PrintInfo()
+{
+    cout << "Image pointer: " << data << endl;
+    cout << "Image dimension: [" << dimX << "," << dimY << "," << dimZ << "]" << endl;
+}
+