[installation] Change to nightly

This commit is contained in:
2025-10-30 12:04:59 +01:00
parent 2ff097f9d1
commit a31bc45cce
1441 changed files with 60368 additions and 56360 deletions

View File

@ -61,28 +61,28 @@ class SC_SYSTEM_CORE_API Reading : public PublicObject {
public:
//! Copy constructor
Reading(const Reading& other);
Reading(const Reading &other);
//! Constructor with publicID
Reading(const std::string& publicID);
//! Destructor
~Reading() override;
// ------------------------------------------------------------------
// Creators
// ------------------------------------------------------------------
public:
static Reading* Create();
static Reading* Create(const std::string& publicID);
static Reading *Create();
static Reading *Create(const std::string& publicID);
// ------------------------------------------------------------------
// Lookup
// ------------------------------------------------------------------
public:
static Reading* Find(const std::string& publicID);
static Reading *Find(const std::string& publicID);
// ------------------------------------------------------------------
@ -91,16 +91,16 @@ class SC_SYSTEM_CORE_API Reading : public PublicObject {
public:
//! Copies the metadata of other to this
//! No changes regarding child objects are made
Reading& operator=(const Reading& other);
Reading &operator=(const Reading &other);
//! Checks for equality of two objects. Child objects
//! are not part of the check.
bool operator==(const Reading& other) const;
bool operator!=(const Reading& other) const;
bool operator==(const Reading &other) const;
bool operator!=(const Reading &other) const;
//! Wrapper that calls operator==
bool equal(const Reading& other) const;
bool equal(const Reading &other) const;
// ------------------------------------------------------------------
// Public interface
// ------------------------------------------------------------------
@ -113,8 +113,8 @@ class SC_SYSTEM_CORE_API Reading : public PublicObject {
* because it already exists in the list
* or it already has another parent
*/
bool add(PickReference* obj);
bool add(AmplitudeReference* obj);
bool add(PickReference *obj);
bool add(AmplitudeReference *obj);
/**
* Removes an object.
@ -123,8 +123,8 @@ class SC_SYSTEM_CORE_API Reading : public PublicObject {
* @return false The object has not been removed
* because it does not exist in the list
*/
bool remove(PickReference* obj);
bool remove(AmplitudeReference* obj);
bool remove(PickReference *obj);
bool remove(AmplitudeReference *obj);
/**
* Removes an object of a particular class.
@ -133,9 +133,9 @@ class SC_SYSTEM_CORE_API Reading : public PublicObject {
* @return false The index is out of bounds
*/
bool removePickReference(size_t i);
bool removePickReference(const PickReferenceIndex& i);
bool removePickReference(const PickReferenceIndex &i);
bool removeAmplitudeReference(size_t i);
bool removeAmplitudeReference(const AmplitudeReferenceIndex& i);
bool removeAmplitudeReference(const AmplitudeReferenceIndex &i);
//! Retrieve the number of objects of a particular class
size_t pickReferenceCount() const;
@ -143,15 +143,15 @@ class SC_SYSTEM_CORE_API Reading : public PublicObject {
//! Index access
//! @return The object at index i
PickReference* pickReference(size_t i) const;
PickReference* pickReference(const PickReferenceIndex& i) const;
PickReference *pickReference(size_t i) const;
PickReference *pickReference(const PickReferenceIndex &i) const;
AmplitudeReference* amplitudeReference(size_t i) const;
AmplitudeReference* amplitudeReference(const AmplitudeReferenceIndex& i) const;
AmplitudeReference *amplitudeReference(size_t i) const;
AmplitudeReference *amplitudeReference(const AmplitudeReferenceIndex &i) const;
//! Find an object by its unique attribute(s)
EventParameters* eventParameters() const;
EventParameters *eventParameters() const;
//! Implement Object interface
bool assign(Object *other) override;