[installation] Change to nightly
This commit is contained in:
@ -90,28 +90,28 @@ class SC_SYSTEM_CORE_API Stream : public PublicObject {
|
||||
|
||||
public:
|
||||
//! Copy constructor
|
||||
Stream(const Stream& other);
|
||||
Stream(const Stream &other);
|
||||
|
||||
//! Constructor with publicID
|
||||
Stream(const std::string& publicID);
|
||||
|
||||
//! Destructor
|
||||
~Stream() override;
|
||||
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// Creators
|
||||
// ------------------------------------------------------------------
|
||||
public:
|
||||
static Stream* Create();
|
||||
static Stream* Create(const std::string& publicID);
|
||||
static Stream *Create();
|
||||
static Stream *Create(const std::string& publicID);
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// Lookup
|
||||
// ------------------------------------------------------------------
|
||||
public:
|
||||
static Stream* Find(const std::string& publicID);
|
||||
static Stream *Find(const std::string& publicID);
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
@ -120,14 +120,14 @@ class SC_SYSTEM_CORE_API Stream : public PublicObject {
|
||||
public:
|
||||
//! Copies the metadata of other to this
|
||||
//! No changes regarding child objects are made
|
||||
Stream& operator=(const Stream& other);
|
||||
Stream &operator=(const Stream &other);
|
||||
//! Checks for equality of two objects. Child objects
|
||||
//! are not part of the check.
|
||||
bool operator==(const Stream& other) const;
|
||||
bool operator!=(const Stream& other) const;
|
||||
bool operator==(const Stream &other) const;
|
||||
bool operator!=(const Stream &other) const;
|
||||
|
||||
//! Wrapper that calls operator==
|
||||
bool equal(const Stream& other) const;
|
||||
bool equal(const Stream &other) const;
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
@ -231,12 +231,12 @@ class SC_SYSTEM_CORE_API Stream : public PublicObject {
|
||||
// ------------------------------------------------------------------
|
||||
public:
|
||||
//! Returns the object's index
|
||||
const StreamIndex& index() const;
|
||||
const StreamIndex &index() const;
|
||||
|
||||
//! Checks two objects for equality regarding their index
|
||||
bool equalIndex(const Stream* lhs) const;
|
||||
bool equalIndex(const Stream *lhs) const;
|
||||
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// Public interface
|
||||
// ------------------------------------------------------------------
|
||||
@ -249,7 +249,7 @@ class SC_SYSTEM_CORE_API Stream : 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.
|
||||
@ -258,7 +258,7 @@ class SC_SYSTEM_CORE_API Stream : 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.
|
||||
@ -267,19 +267,19 @@ class SC_SYSTEM_CORE_API Stream : 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)
|
||||
|
||||
SensorLocation* sensorLocation() const;
|
||||
SensorLocation *sensorLocation() const;
|
||||
|
||||
//! Implement Object interface
|
||||
bool assign(Object *other) override;
|
||||
|
||||
Reference in New Issue
Block a user