[installation] Change to nightly
This commit is contained in:
@ -73,28 +73,28 @@ class SC_SYSTEM_CORE_API Origin : public PublicObject {
|
||||
|
||||
public:
|
||||
//! Copy constructor
|
||||
Origin(const Origin& other);
|
||||
Origin(const Origin &other);
|
||||
|
||||
//! Constructor with publicID
|
||||
Origin(const std::string& publicID);
|
||||
|
||||
//! Destructor
|
||||
~Origin() override;
|
||||
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// Creators
|
||||
// ------------------------------------------------------------------
|
||||
public:
|
||||
static Origin* Create();
|
||||
static Origin* Create(const std::string& publicID);
|
||||
static Origin *Create();
|
||||
static Origin *Create(const std::string& publicID);
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// Lookup
|
||||
// ------------------------------------------------------------------
|
||||
public:
|
||||
static Origin* Find(const std::string& publicID);
|
||||
static Origin *Find(const std::string& publicID);
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
@ -103,14 +103,14 @@ class SC_SYSTEM_CORE_API Origin : public PublicObject {
|
||||
public:
|
||||
//! Copies the metadata of other to this
|
||||
//! No changes regarding child objects are made
|
||||
Origin& operator=(const Origin& other);
|
||||
Origin &operator=(const Origin &other);
|
||||
//! Checks for equality of two objects. Child objects
|
||||
//! are not part of the check.
|
||||
bool operator==(const Origin& other) const;
|
||||
bool operator!=(const Origin& other) const;
|
||||
bool operator==(const Origin &other) const;
|
||||
bool operator!=(const Origin &other) const;
|
||||
|
||||
//! Wrapper that calls operator==
|
||||
bool equal(const Origin& other) const;
|
||||
bool equal(const Origin &other) const;
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
@ -212,7 +212,7 @@ class SC_SYSTEM_CORE_API Origin : public PublicObject {
|
||||
CreationInfo& creationInfo();
|
||||
const CreationInfo& creationInfo() const;
|
||||
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// Public interface
|
||||
// ------------------------------------------------------------------
|
||||
@ -225,11 +225,11 @@ class SC_SYSTEM_CORE_API Origin : public PublicObject {
|
||||
* because it already exists in the list
|
||||
* or it already has another parent
|
||||
*/
|
||||
bool add(Comment* obj);
|
||||
bool add(CompositeTime* obj);
|
||||
bool add(Arrival* obj);
|
||||
bool add(StationMagnitude* obj);
|
||||
bool add(Magnitude* obj);
|
||||
bool add(Comment *obj);
|
||||
bool add(CompositeTime *obj);
|
||||
bool add(Arrival *obj);
|
||||
bool add(StationMagnitude *obj);
|
||||
bool add(Magnitude *obj);
|
||||
|
||||
/**
|
||||
* Removes an object.
|
||||
@ -238,11 +238,11 @@ class SC_SYSTEM_CORE_API Origin : public PublicObject {
|
||||
* @return false The object has not been removed
|
||||
* because it does not exist in the list
|
||||
*/
|
||||
bool remove(Comment* obj);
|
||||
bool remove(CompositeTime* obj);
|
||||
bool remove(Arrival* obj);
|
||||
bool remove(StationMagnitude* obj);
|
||||
bool remove(Magnitude* obj);
|
||||
bool remove(Comment *obj);
|
||||
bool remove(CompositeTime *obj);
|
||||
bool remove(Arrival *obj);
|
||||
bool remove(StationMagnitude *obj);
|
||||
bool remove(Magnitude *obj);
|
||||
|
||||
/**
|
||||
* Removes an object of a particular class.
|
||||
@ -251,10 +251,10 @@ class SC_SYSTEM_CORE_API Origin : public PublicObject {
|
||||
* @return false The index is out of bounds
|
||||
*/
|
||||
bool removeComment(size_t i);
|
||||
bool removeComment(const CommentIndex& i);
|
||||
bool removeComment(const CommentIndex &i);
|
||||
bool removeCompositeTime(size_t i);
|
||||
bool removeArrival(size_t i);
|
||||
bool removeArrival(const ArrivalIndex& i);
|
||||
bool removeArrival(const ArrivalIndex &i);
|
||||
bool removeStationMagnitude(size_t i);
|
||||
bool removeMagnitude(size_t i);
|
||||
|
||||
@ -267,21 +267,21 @@ class SC_SYSTEM_CORE_API Origin : public PublicObject {
|
||||
|
||||
//! Index access
|
||||
//! @return The object at index i
|
||||
Comment* comment(size_t i) const;
|
||||
Comment* comment(const CommentIndex& i) const;
|
||||
CompositeTime* compositeTime(size_t i) const;
|
||||
Comment *comment(size_t i) const;
|
||||
Comment *comment(const CommentIndex &i) const;
|
||||
CompositeTime *compositeTime(size_t i) const;
|
||||
|
||||
Arrival* arrival(size_t i) const;
|
||||
Arrival* arrival(const ArrivalIndex& i) const;
|
||||
StationMagnitude* stationMagnitude(size_t i) const;
|
||||
Magnitude* magnitude(size_t i) const;
|
||||
Arrival *arrival(size_t i) const;
|
||||
Arrival *arrival(const ArrivalIndex &i) const;
|
||||
StationMagnitude *stationMagnitude(size_t i) const;
|
||||
Magnitude *magnitude(size_t i) const;
|
||||
|
||||
//! Find an object by its unique attribute(s)
|
||||
CompositeTime* findCompositeTime(CompositeTime* compositeTime) const;
|
||||
StationMagnitude* findStationMagnitude(const std::string& publicID) const;
|
||||
Magnitude* findMagnitude(const std::string& publicID) const;
|
||||
CompositeTime *findCompositeTime(CompositeTime *compositeTime) const;
|
||||
StationMagnitude *findStationMagnitude(const std::string& publicID) const;
|
||||
Magnitude *findMagnitude(const std::string& publicID) const;
|
||||
|
||||
EventParameters* eventParameters() const;
|
||||
EventParameters *eventParameters() const;
|
||||
|
||||
//! Implement Object interface
|
||||
bool assign(Object *other) override;
|
||||
|
||||
Reference in New Issue
Block a user