CreateIsolinesParams.h
Go to the documentation of this file.
1 /* Copyright (C) 2001-2009 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/sa/core/BayesParams.h
22 
23  \brief This file contains a class that represents the Bayes parameters.
24 
25  \reference Adapted from TerraLib4.
26 */
27 
28 #ifndef __TERRALIB_MNT_INTERNAL_CREATEISOLINESPARAMS_H
29 #define __TERRALIB_MNT_INTERNAL_CREATEISOLINESPARAMS_H
30 
31 // Terralib Includes
32 #include "../../../../src/terralib/dataaccess/dataset/DataSet.h"
33 #include "../../../../src/terralib/dataaccess/dataset/DataSetType.h"
34 #include "../../../../src/terralib/dataaccess/datasource/DataSource.h"
35 #include "Config.h"
36 #include "Enums.h"
37 
38 // STL Includes
39 #include <map>
40 #include <memory>
41 #include <string>
42 
43  /*!
44  \class BayesInputParams
45 
46  \brief Class that represents the Bayes input parameters.
47 
48  \sa BayesGlobalOperation BayesLocalOperation
49  */
50 
52  {
53  public:
54 
55  /*! \brief Default constructor. */
57 
58  /*! \brief Virtual destructor. */
60 
61  public:
62 
63  std::auto_ptr<te::da::DataSetType> m_dsType; //!< Attribute used to access the data set metadata
64  std::auto_ptr<te::da::DataSet> m_ds; //!< Attribute with data set
65  };
66 
67  /*!
68  \class BayesOutputParams
69  \brief Class that represents the Bayes output parameters.
70  \sa BayesGlobalOperation BayesLocalOperation
71  */
72 
74  {
75  public:
76 
77  /*! \brief Default constructor. */
79  {
81  }
82 
83  /*! \brief Virtual destructor. */
85  {
86  }
87 
88  public:
89 
90  te::da::DataSourcePtr m_ds; //!< Pointer to the output datasource.
91 
92  std::string m_outputDataSetName; //!< Attribute that defines the output dataset name
93  };
94 
95 #endif //__TERRALIB_MNT_INTERNAL_CREATEISOLINESPARAMS_H
~CreateIsolinesOutputParams()
Virtual destructor.
std::string m_outputDataSetName
Attribute that defines the output dataset name.
boost::shared_ptr< DataSource > DataSourcePtr
Definition: DataSource.h:1438
std::auto_ptr< te::da::DataSetType > m_dsType
Attribute used to access the data set metadata.
~CreateIsolinesInputParams()
Virtual destructor.
std::auto_ptr< te::da::DataSet > m_ds
Attribute with data set.
CreateIsolinesOutputParams()
Default constructor.
CreateIsolinesInputParams()
Default constructor.
te::da::DataSourcePtr m_ds
Pointer to the output datasource.
General enumerations.