Install SeisComP and scanloc ARM64 nightly packages

This commit is contained in:
Enrico Ellguth
2025-10-29 12:34:04 +00:00
parent 2ff097f9d1
commit 165b829fb7
606 changed files with 24438 additions and 16358 deletions

View File

@ -89,28 +89,28 @@ class SC_SYSTEM_CORE_API StationGroup : public PublicObject {
public:
//! Copy constructor
StationGroup(const StationGroup& other);
StationGroup(const StationGroup &other);
//! Constructor with publicID
StationGroup(const std::string& publicID);
//! Destructor
~StationGroup() override;
// ------------------------------------------------------------------
// Creators
// ------------------------------------------------------------------
public:
static StationGroup* Create();
static StationGroup* Create(const std::string& publicID);
static StationGroup *Create();
static StationGroup *Create(const std::string& publicID);
// ------------------------------------------------------------------
// Lookup
// ------------------------------------------------------------------
public:
static StationGroup* Find(const std::string& publicID);
static StationGroup *Find(const std::string& publicID);
// ------------------------------------------------------------------
@ -119,14 +119,14 @@ class SC_SYSTEM_CORE_API StationGroup : public PublicObject {
public:
//! Copies the metadata of other to this
//! No changes regarding child objects are made
StationGroup& operator=(const StationGroup& other);
StationGroup &operator=(const StationGroup &other);
//! Checks for equality of two objects. Child objects
//! are not part of the check.
bool operator==(const StationGroup& other) const;
bool operator!=(const StationGroup& other) const;
bool operator==(const StationGroup &other) const;
bool operator!=(const StationGroup &other) const;
//! Wrapper that calls operator==
bool equal(const StationGroup& other) const;
bool equal(const StationGroup &other) const;
// ------------------------------------------------------------------
@ -185,12 +185,12 @@ class SC_SYSTEM_CORE_API StationGroup : public PublicObject {
// ------------------------------------------------------------------
public:
//! Returns the object's index
const StationGroupIndex& index() const;
const StationGroupIndex &index() const;
//! Checks two objects for equality regarding their index
bool equalIndex(const StationGroup* lhs) const;
bool equalIndex(const StationGroup *lhs) const;
// ------------------------------------------------------------------
// Public interface
// ------------------------------------------------------------------
@ -203,7 +203,7 @@ class SC_SYSTEM_CORE_API StationGroup : public PublicObject {
* because it already exists in the list
* or it already has another parent
*/
bool add(StationReference* obj);
bool add(StationReference *obj);
/**
* Removes an object.
@ -212,7 +212,7 @@ class SC_SYSTEM_CORE_API StationGroup : public PublicObject {
* @return false The object has not been removed
* because it does not exist in the list
*/
bool remove(StationReference* obj);
bool remove(StationReference *obj);
/**
* Removes an object of a particular class.
@ -221,19 +221,19 @@ class SC_SYSTEM_CORE_API StationGroup : public PublicObject {
* @return false The index is out of bounds
*/
bool removeStationReference(size_t i);
bool removeStationReference(const StationReferenceIndex& i);
bool removeStationReference(const StationReferenceIndex &i);
//! Retrieve the number of objects of a particular class
size_t stationReferenceCount() const;
//! Index access
//! @return The object at index i
StationReference* stationReference(size_t i) const;
StationReference* stationReference(const StationReferenceIndex& i) const;
StationReference *stationReference(size_t i) const;
StationReference *stationReference(const StationReferenceIndex &i) const;
//! Find an object by its unique attribute(s)
Inventory* inventory() const;
Inventory *inventory() const;
//! Implement Object interface
bool assign(Object *other) override;