All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Property.cpp
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/datatype/Property.cpp
22 
23  \brief It models a property definition.
24 */
25 
26 // TerraLib
27 #include "Property.h"
28 
29 te::dt::Property::Property(const std::string& name,
30  int datatype,
31  unsigned int id,
32  Property* parent,
33  const std::string& dsName)
34  : m_parent(parent),
35  m_id(id),
36  m_type(datatype),
37  m_name(name),
38  m_datasetName(dsName)
39 {
40 }
41 
43  : m_parent(0),
44  m_id(rhs.m_id),
45  m_type(rhs.m_type),
46  m_name(rhs.m_name),
47  m_datasetName(rhs.m_datasetName)
48 {
49 }
50 
52 {
53  if(this != &rhs)
54  {
55  m_parent = 0;
56  m_id = rhs.m_id;
57  m_type = rhs.m_type;
58  m_name = rhs.m_name;
59  m_datasetName = rhs.m_datasetName;
60  }
61 
62  return *this;
63 }
64 
65 
66 
Property(const std::string &name, int datatype, unsigned int id=0, Property *parent=0, const std::string &dsName="")
It initializes a new Property.
Definition: Property.cpp:29
Property & operator=(const Property &rhs)
Assignment operator.
Definition: Property.cpp:51
std::string m_name
The property name.
Definition: Property.h:207
It models a property definition.
Definition: Property.h:59
std::string m_datasetName
The property's dataset name.
Definition: Property.h:208
unsigned int m_id
An identification number that can be used internally.
Definition: Property.h:205
It models a property definition.
int m_type
The property data type.
Definition: Property.h:206