You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
121 lines
3.6 KiB
C
121 lines
3.6 KiB
C
2 years ago
|
/***************************************************************************
|
||
|
* Copyright (C) by ETHZ/SED *
|
||
|
* *
|
||
|
* This program is free software: you can redistribute it and/or modify *
|
||
|
* it under the terms of the GNU LESSER GENERAL PUBLIC LICENSE as published*
|
||
|
* by the Free Software Foundation, either version 3 of the License, or *
|
||
|
* (at your option) any later version. *
|
||
|
* *
|
||
|
* This software is distributed in the hope that it will be useful, *
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
||
|
* GNU Affero General Public License for more details. *
|
||
|
* *
|
||
|
* Developed by gempa GmbH *
|
||
|
***************************************************************************/
|
||
|
|
||
|
// This file was created by a source code generator.
|
||
|
// Do not modify the contents. Change the definition and run the generator
|
||
|
// again!
|
||
|
|
||
|
|
||
|
#ifndef SEISCOMP_DATAMODEL_STRONGMOTION_CONTACT_H
|
||
|
#define SEISCOMP_DATAMODEL_STRONGMOTION_CONTACT_H
|
||
|
|
||
|
|
||
|
#include <string>
|
||
|
#include <seiscomp/core/baseobject.h>
|
||
|
#include <seiscomp/core/exceptions.h>
|
||
|
#include <seiscomp/datamodel/strongmotion/api.h>
|
||
|
|
||
|
|
||
|
namespace Seiscomp {
|
||
|
namespace DataModel {
|
||
|
namespace StrongMotion {
|
||
|
|
||
|
|
||
|
DEFINE_SMARTPOINTER(Contact);
|
||
|
|
||
|
|
||
|
class SC_STRONGMOTION_API Contact : public Core::BaseObject {
|
||
|
DECLARE_SC_CLASS(Contact);
|
||
|
DECLARE_SERIALIZATION;
|
||
|
DECLARE_METAOBJECT;
|
||
|
|
||
|
// ------------------------------------------------------------------
|
||
|
// Xstruction
|
||
|
// ------------------------------------------------------------------
|
||
|
public:
|
||
|
//! Constructor
|
||
|
Contact();
|
||
|
|
||
|
//! Copy constructor
|
||
|
Contact(const Contact& other);
|
||
|
|
||
|
//! Destructor
|
||
|
~Contact();
|
||
|
|
||
|
|
||
|
// ------------------------------------------------------------------
|
||
|
// Operators
|
||
|
// ------------------------------------------------------------------
|
||
|
public:
|
||
|
//! Copies the metadata of other to this
|
||
|
Contact& operator=(const Contact& other);
|
||
|
//! Checks for equality of two objects. Childs objects
|
||
|
//! are not part of the check.
|
||
|
bool operator==(const Contact& other) const;
|
||
|
bool operator!=(const Contact& other) const;
|
||
|
|
||
|
//! Wrapper that calls operator==
|
||
|
bool equal(const Contact& other) const;
|
||
|
|
||
|
|
||
|
// ------------------------------------------------------------------
|
||
|
// Setters/Getters
|
||
|
// ------------------------------------------------------------------
|
||
|
public:
|
||
|
void setName(const std::string& name);
|
||
|
const std::string& name() const;
|
||
|
|
||
|
void setForename(const std::string& forename);
|
||
|
const std::string& forename() const;
|
||
|
|
||
|
void setAgency(const std::string& agency);
|
||
|
const std::string& agency() const;
|
||
|
|
||
|
void setDepartment(const std::string& department);
|
||
|
const std::string& department() const;
|
||
|
|
||
|
void setAddress(const std::string& address);
|
||
|
const std::string& address() const;
|
||
|
|
||
|
void setPhone(const std::string& phone);
|
||
|
const std::string& phone() const;
|
||
|
|
||
|
void setEmail(const std::string& email);
|
||
|
const std::string& email() const;
|
||
|
|
||
|
|
||
|
// ------------------------------------------------------------------
|
||
|
// Implementation
|
||
|
// ------------------------------------------------------------------
|
||
|
private:
|
||
|
// Attributes
|
||
|
std::string _name;
|
||
|
std::string _forename;
|
||
|
std::string _agency;
|
||
|
std::string _department;
|
||
|
std::string _address;
|
||
|
std::string _phone;
|
||
|
std::string _email;
|
||
|
};
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif
|