diff --git a/otbVectorDataStyle.cxx b/otbVectorDataStyle.cxx new file mode 100644 index 0000000000000000000000000000000000000000..a04c31569ee0c4814de43db3892410310bacd174 --- /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 0000000000000000000000000000000000000000..713186d04e2e7bf6156e915147ad1d79fdd13aa8 --- /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