1 /***************************************************************************
2 * Copyright (C) 2008 by Sverre Rabbelier *
3 * sverre@rabbelier.nl *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 3 of the License, or *
8 * (at your option) any later version. *
10 * This program 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 General Public License for more details. *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
23 #include "FieldImpls.h"
24 #include "TableImpls.h"
28 Cluster::Cluster(SavableManagerPtr cluster
) :
34 Cluster::~Cluster(void)
39 value_type
Cluster::getID() const
41 return m_cluster
->getValue(db::TableImpls::Get()->CLUSTERS
->CLUSTERID
)->getIntegerValue();
44 const std::string
& Cluster::getName() const
46 return m_cluster
->getValue(db::TableImpls::Get()->CLUSTERS
->NAME
)->getStringValue();
49 const std::string
& Cluster::getDescription() const
51 return m_cluster
->getValue(db::TableImpls::Get()->CLUSTERS
->DESCRIPTION
)->getStringValue();
54 value_type
Cluster::getArea() const
56 return m_cluster
->getValue(db::TableImpls::Get()->CLUSTERS
->FKAREAS
)->getIntegerValue();
59 void Cluster::setName(const std::string
& name
)
62 ValuePtr
value(new FieldValue(db::TableImpls::Get()->CLUSTERS
->NAME
, name
));
63 m_cluster
->setValue(value
);
66 void Cluster::setDescription(const std::string
& description
)
69 ValuePtr
value(new FieldValue(db::TableImpls::Get()->CLUSTERS
->DESCRIPTION
, description
));
70 m_cluster
->setValue(value
);
73 void Cluster::setArea(value_type area
)
76 ValuePtr
value(new FieldValue(db::TableImpls::Get()->CLUSTERS
->FKAREAS
, area
));
77 m_cluster
->setValue(value
);
80 void Cluster::Delete()
92 void Cluster::Discard()
98 bool Cluster::Exists()
100 return m_cluster
->exists();
103 SavableManagerPtr
Cluster::getManager() const
108 TableImplPtr
Cluster::getTable() const
110 return m_cluster
->getTable();