From 5d3107955d0368d3badf2673436d85cc384268e4 Mon Sep 17 00:00:00 2001
From: Emmanuel Christophe <emmanuel.christophe@orfeo-toolbox.org>
Date: Thu, 30 Apr 2009 12:50:59 +0800
Subject: [PATCH] ENH: separating style from the main code

---
 otbVectorDataStyle.cxx | 20 ++++++++++++++++++++
 otbVectorDataStyle.h   | 42 ++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)
 create mode 100644 otbVectorDataStyle.cxx
 create mode 100644 otbVectorDataStyle.h

diff --git a/otbVectorDataStyle.cxx b/otbVectorDataStyle.cxx
new file mode 100644
index 0000000000..a04c31569e
--- /dev/null
+++ b/otbVectorDataStyle.cxx
@@ -0,0 +1,20 @@
+/*=========================================================================
+
+  Program:   ORFEO Toolbox
+  Language:  C++
+  Date:      $Date$
+  Version:   $Revision$
+
+
+  Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
+  See OTBCopyright.txt for details.
+
+
+     This software is distributed WITHOUT ANY WARRANTY; without even
+     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+     PURPOSE.  See the above copyright notices for more information.
+
+=========================================================================*/
+
+#include "otbVectorDataStyle.h"
+
diff --git a/otbVectorDataStyle.h b/otbVectorDataStyle.h
new file mode 100644
index 0000000000..713186d04e
--- /dev/null
+++ b/otbVectorDataStyle.h
@@ -0,0 +1,42 @@
+/*=========================================================================
+
+  Program:   ORFEO Toolbox
+  Language:  C++
+  Date:      $Date$
+  Version:   $Revision$
+
+
+  Copyright (c) Centre National d'Etudes Spatiales. All rights reserved.
+  See OTBCopyright.txt for details.
+
+
+     This software is distributed WITHOUT ANY WARRANTY; without even
+     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+     PURPOSE.  See the above copyright notices for more information.
+
+=========================================================================*/
+
+#ifndef __otbVectorDataStyle_h
+#define __otbVectorDataStyle_h
+
+#include "itkLightObject.h"
+
+namespace otb
+{
+/** \class VectorDataStyle
+   *   \brief Render a vector data into an image
+   *
+ */
+
+
+class ITK_EXPORT VectorDataStyle : public itk::LightObject
+{
+  public:
+
+
+}; // end class
+} // end namespace otb
+
+
+
+#endif
\ No newline at end of file
-- 
GitLab