MakeValidOperation.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/MakeValidOperation.h
22 
23  \brief Represents a make valid operation which analyses and fixes features of a set
24  */
25 
26 #ifndef __TERRALIB_VP_INTERNAL_MAKEVALIDOPERATION_H
27 #define __TERRALIB_VP_INTERNAL_MAKEVALIDOPERATION_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 FeatureSet;
41 
42  /*!
43  \class MakeValidOperation
44  \brief Represents a make valid operation which analyses and fixes features of a set
45  */
47  {
48  public:
49 
50  /*!
51  * \brief Constructor
52  */
54 
55  //!< Destructor
57 
58  virtual std::unique_ptr<te::vp::AbstractOperationCapabilities> getCapabilities() const override;
59 
60  std::vector<te::vp::FeatureSet> executeImpl(const std::vector<te::vp::FeatureSet>& vecInput) override;
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_MAKEVALIDOPERATION_H
te::vp::MakeValidOperation::executeImpl
std::vector< te::vp::FeatureSet > executeImpl(const std::vector< te::vp::FeatureSet > &vecInput) override
te
TerraLib.
Definition: AddressGeocodingOp.h:52
te::vp::OperationFactory
Abstract factory used to create Operations.
Definition: AbstractOperation.h:306
te::vp::MakeValidOperationFactory::MakeValidOperationFactory
MakeValidOperationFactory()
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::MakeValidOperation::getCapabilities
virtual std::unique_ptr< te::vp::AbstractOperationCapabilities > getCapabilities() const override
Makes all the necessaries adaptations to the input dataAccess to avoid duplicate column names.
te::vp::MakeValidOperation::~MakeValidOperation
virtual ~MakeValidOperation()
te::vp::MakeValidOperation
Represents a make valid operation which analyses and fixes features of a set.
Definition: MakeValidOperation.h:47
te::vp::MakeValidOperationFactory::build
virtual te::vp::AbstractOperation * build() override
Concrete factories (derived from this one) must implement this method in order to create objects.
te::vp::MakeValidOperationFactory::~MakeValidOperationFactory
virtual ~MakeValidOperationFactory()
te::vp::MakeValidOperationFactory
Definition: MakeValidOperation.h:64
Config.h
Proxy configuration file for TerraView (see terraview_config.h).
te::vp::MakeValidOperation::MakeValidOperation
MakeValidOperation()
Constructor.
te::vp::AbstractOperation
Abstract class used to define an operation.
Definition: AbstractOperation.h:204
AbstractOperation.h
Abstract Class to represent an abstract vector operation.