IntersectionOperation.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/vp/IntersectionOperation.h
22 
23  \brief Represents an intersection operation between two sets of features
24  */
25 
26 #ifndef __TERRALIB_VP_INTERNAL_INTERSECTIONOPERATION_H
27 #define __TERRALIB_VP_INTERNAL_INTERSECTIONOPERATION_H
28 
29  //Terralib include files
30 #include "Config.h"
31 
32 #include "AbstractOperation.h"
33 
34 #include <vector>
35 
36 namespace te
37 {
38  namespace vp
39  {
40  class AbstractParameters;
41  class FeatureSet;
42 
43  /*!
44  \class IntersectionOperation
45 
46  \brief Represents an intersection operation between two sets of features
47  */
49  {
50  public:
51 
52  /*!
53  * \brief Constructor
54  */
56 
57  //!< Destructor
58  virtual ~IntersectionOperation() = default;
59 
60  std::vector<te::vp::FeatureSet> executeImpl(const std::vector<te::vp::FeatureSet>& vecInput);
61  };
62 
64  {
65  public:
66 
68 
70 
71  protected:
72 
73  virtual te::vp::AbstractOperation* build() override;
74  };
75 
76  }//end namespace vp
77 }// end namespace te
78 
79 #endif // __TERRALIB_VP_INTERNAL_INTERSECTIONOPERATION_H
te
TerraLib.
Definition: AddressGeocodingOp.h:52
te::vp::OperationFactory
Abstract factory used to create Operations.
Definition: AbstractOperation.h:306
te::vp::IntersectionOperationFactory::~IntersectionOperationFactory
virtual ~IntersectionOperationFactory()
te::vp::IntersectionOperation::executeImpl
std::vector< te::vp::FeatureSet > executeImpl(const std::vector< te::vp::FeatureSet > &vecInput)
TEVPEXPORT
#define TEVPEXPORT
You can use this macro in order to export/import classes and functions from this module.
Definition: Config.h:61
te::vp::IntersectionOperation
Represents an intersection operation between two sets of features.
Definition: IntersectionOperation.h:49
te::vp::IntersectionOperation::~IntersectionOperation
virtual ~IntersectionOperation()=default
te::vp::IntersectionOperationFactory
Definition: IntersectionOperation.h:64
te::vp::IntersectionOperation::IntersectionOperation
IntersectionOperation()
Constructor.
Config.h
Proxy configuration file for TerraView (see terraview_config.h).
te::vp::IntersectionOperationFactory::build
virtual te::vp::AbstractOperation * build() override
Concrete factories (derived from this one) must implement this method in order to create objects.
te::vp::IntersectionOperationFactory::IntersectionOperationFactory
IntersectionOperationFactory()
te::vp::AbstractOperation
Abstract class used to define an operation.
Definition: AbstractOperation.h:204
AbstractOperation.h
Abstract Class to represent an abstract vector operation.