Install SeisComP and scanloc ARM64 nightly packages
This commit is contained in:
@ -66,28 +66,28 @@ class SC_SYSTEM_CORE_API Pick : public PublicObject {
|
||||
|
||||
public:
|
||||
//! Copy constructor
|
||||
Pick(const Pick& other);
|
||||
Pick(const Pick &other);
|
||||
|
||||
//! Constructor with publicID
|
||||
Pick(const std::string& publicID);
|
||||
|
||||
//! Destructor
|
||||
~Pick() override;
|
||||
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// Creators
|
||||
// ------------------------------------------------------------------
|
||||
public:
|
||||
static Pick* Create();
|
||||
static Pick* Create(const std::string& publicID);
|
||||
static Pick *Create();
|
||||
static Pick *Create(const std::string& publicID);
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// Lookup
|
||||
// ------------------------------------------------------------------
|
||||
public:
|
||||
static Pick* Find(const std::string& publicID);
|
||||
static Pick *Find(const std::string& publicID);
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
@ -96,14 +96,14 @@ class SC_SYSTEM_CORE_API Pick : public PublicObject {
|
||||
public:
|
||||
//! Copies the metadata of other to this
|
||||
//! No changes regarding child objects are made
|
||||
Pick& operator=(const Pick& other);
|
||||
Pick &operator=(const Pick &other);
|
||||
//! Checks for equality of two objects. Child objects
|
||||
//! are not part of the check.
|
||||
bool operator==(const Pick& other) const;
|
||||
bool operator!=(const Pick& other) const;
|
||||
bool operator==(const Pick &other) const;
|
||||
bool operator!=(const Pick &other) const;
|
||||
|
||||
//! Wrapper that calls operator==
|
||||
bool equal(const Pick& other) const;
|
||||
bool equal(const Pick &other) const;
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
@ -178,7 +178,7 @@ class SC_SYSTEM_CORE_API Pick : public PublicObject {
|
||||
CreationInfo& creationInfo();
|
||||
const CreationInfo& creationInfo() const;
|
||||
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// Public interface
|
||||
// ------------------------------------------------------------------
|
||||
@ -191,7 +191,7 @@ class SC_SYSTEM_CORE_API Pick : public PublicObject {
|
||||
* because it already exists in the list
|
||||
* or it already has another parent
|
||||
*/
|
||||
bool add(Comment* obj);
|
||||
bool add(Comment *obj);
|
||||
|
||||
/**
|
||||
* Removes an object.
|
||||
@ -200,7 +200,7 @@ class SC_SYSTEM_CORE_API Pick : public PublicObject {
|
||||
* @return false The object has not been removed
|
||||
* because it does not exist in the list
|
||||
*/
|
||||
bool remove(Comment* obj);
|
||||
bool remove(Comment *obj);
|
||||
|
||||
/**
|
||||
* Removes an object of a particular class.
|
||||
@ -209,19 +209,19 @@ class SC_SYSTEM_CORE_API Pick : 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);
|
||||
|
||||
//! Retrieve the number of objects of a particular class
|
||||
size_t commentCount() const;
|
||||
|
||||
//! Index access
|
||||
//! @return The object at index i
|
||||
Comment* comment(size_t i) const;
|
||||
Comment* comment(const CommentIndex& i) const;
|
||||
Comment *comment(size_t i) const;
|
||||
Comment *comment(const CommentIndex &i) const;
|
||||
|
||||
//! Find an object by its unique attribute(s)
|
||||
|
||||
EventParameters* eventParameters() const;
|
||||
EventParameters *eventParameters() const;
|
||||
|
||||
//! Implement Object interface
|
||||
bool assign(Object *other) override;
|
||||
|
||||
Reference in New Issue
Block a user