[installation] Change to nightly
This commit is contained in:
@ -58,9 +58,9 @@ class SC_SYSTEM_CORE_API SACRecord : public Record {
|
||||
Array* data();
|
||||
|
||||
//! Returns the data samples if the data is available; otherwise 0
|
||||
const Array* data() const;
|
||||
const Array* data() const override;
|
||||
|
||||
const Array* raw() const;
|
||||
const Array* raw() const override;
|
||||
|
||||
//! Sets the data sample array. The ownership goes over to the record.
|
||||
void setData(Array* data);
|
||||
@ -69,12 +69,12 @@ class SC_SYSTEM_CORE_API SACRecord : public Record {
|
||||
void setData(int size, const void *data, Array::DataType datatype);
|
||||
|
||||
//! Returns a deep copy of the calling object.
|
||||
SACRecord *copy() const;
|
||||
SACRecord *copy() const override;
|
||||
|
||||
void saveSpace() const;
|
||||
void saveSpace() const override;
|
||||
|
||||
void read(std::istream &in);
|
||||
void write(std::ostream &out);
|
||||
void read(std::istream &in) override;
|
||||
void write(std::ostream &out) override;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user