ImageOutline.h
Go to the documentation of this file.
1 /* Copyright (C) 2008 National Institute For Space Research (INPE) - Brazil.
2 
3  This file is part of the TerraLib - a Framework for building GIS enabled applications.
4 
5  TerraLib is free software: you can redistribute it and/or modify
6  it under the terms of the GNU Lesser General Public License as published by
7  the Free Software Foundation, either version 3 of the License,
8  or (at your option) any later version.
9 
10  TerraLib is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU Lesser General Public License for more details.
14 
15  You should have received a copy of the GNU Lesser General Public License
16  along with TerraLib. See COPYING. If not, write to
17  TerraLib Team at <terralib-team@terralib.org>.
18  */
19 
20 /*!
21  \file terralib/se/ImageOutline.h
22 
23  \brief ImageOutline specifies how individual source rasters in a multi-raster set (such as a set of satellite-image scenes) should be outlined to make the individual-image locations visible.
24 */
25 
26 #ifndef __TERRALIB_SE_INTERNAL_IMAGEOUTLINE_H
27 #define __TERRALIB_SE_INTERNAL_IMAGEOUTLINE_H
28 
29 // TerraLib
30 #include "Config.h"
31 
32 // Boost
33 #include <boost/noncopyable.hpp>
34 
35 namespace te
36 {
37  namespace se
38  {
39 // Forward declaration
40  class Symbolizer;
41 
42  /*!
43  \class ImageOutline
44 
45  \brief ImageOutline specifies how individual source rasters in a multi-raster set (such as a set of satellite-image scenes) should be outlined to make the individual-image locations visible.
46 
47  The ImageOutline element specifies that individual source
48  rasters in a multi-raster set (such as a set of satellite-image
49  scenes) should be outlined with either a LineSymbolizer or PolygonSymbolizer.
50 
51  \sa RasterSymbolizer, LineSymbolizer, PolygonSymbolizer
52  */
53  class TESEEXPORT ImageOutline : public boost::noncopyable
54  {
55  public:
56 
57  /** @name Initializer Methods
58  * Methods related to instantiation and destruction.
59  */
60  //@{
61 
62  /*! \brief It initializes a new ImageOutline. */
63  ImageOutline();
64 
65  /*! \brief Destructor. */
66  ~ImageOutline();
67 
68  //@}
69 
70  /** @name Accessor methods
71  * Methods used to get or set properties.
72  */
73  //@{
74 
75  void setSymbolizer(Symbolizer* s);
76 
77  Symbolizer* getSymbolizer() const;
78 
79  //@}
80 
81  /*! \brief It creates a new copy of this object. */
82  ImageOutline* clone() const;
83 
84  private:
85 
86  Symbolizer* m_symbol; //!< Mandatory.
87  };
88 
89  } // end namespace se
90 } // end namespace te
91 
92 #endif // __TERRALIB_SE_INTERNAL_IMAGEOUTLINE_H
A Symbolizer describes how a feature is to appear on a map.
Definition: Symbolizer.h:80
URI C++ Library.
ImageOutline specifies how individual source rasters in a multi-raster set (such as a set of satellit...
Definition: ImageOutline.h:53
Symbolizer * m_symbol
Mandatory.
Definition: ImageOutline.h:86
#define TESEEXPORT
You can use this macro in order to export/import classes and functions from this module.
Definition: Config.h:187
Configuration flags for the Symbology Encoding support of TerraLib.