[installation] Change to nightly
This commit is contained in:
@ -52,11 +52,11 @@ class SC_SYSTEM_CORE_API Routing : public PublicObject {
|
||||
Routing();
|
||||
|
||||
//! Copy constructor
|
||||
Routing(const Routing& other);
|
||||
Routing(const Routing &other);
|
||||
|
||||
//! Destructor
|
||||
~Routing() override;
|
||||
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// Operators
|
||||
@ -64,16 +64,16 @@ class SC_SYSTEM_CORE_API Routing : public PublicObject {
|
||||
public:
|
||||
//! Copies the metadata of other to this
|
||||
//! No changes regarding child objects are made
|
||||
Routing& operator=(const Routing& other);
|
||||
Routing &operator=(const Routing &other);
|
||||
//! Checks for equality of two objects. Child objects
|
||||
//! are not part of the check.
|
||||
bool operator==(const Routing& other) const;
|
||||
bool operator!=(const Routing& other) const;
|
||||
bool operator==(const Routing &other) const;
|
||||
bool operator!=(const Routing &other) const;
|
||||
|
||||
//! Wrapper that calls operator==
|
||||
bool equal(const Routing& other) const;
|
||||
bool equal(const Routing &other) const;
|
||||
|
||||
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// Public interface
|
||||
// ------------------------------------------------------------------
|
||||
@ -86,8 +86,8 @@ class SC_SYSTEM_CORE_API Routing : public PublicObject {
|
||||
* because it already exists in the list
|
||||
* or it already has another parent
|
||||
*/
|
||||
bool add(Route* obj);
|
||||
bool add(Access* obj);
|
||||
bool add(Route *obj);
|
||||
bool add(Access *obj);
|
||||
|
||||
/**
|
||||
* Removes an object.
|
||||
@ -96,8 +96,8 @@ class SC_SYSTEM_CORE_API Routing : public PublicObject {
|
||||
* @return false The object has not been removed
|
||||
* because it does not exist in the list
|
||||
*/
|
||||
bool remove(Route* obj);
|
||||
bool remove(Access* obj);
|
||||
bool remove(Route *obj);
|
||||
bool remove(Access *obj);
|
||||
|
||||
/**
|
||||
* Removes an object of a particular class.
|
||||
@ -106,9 +106,9 @@ class SC_SYSTEM_CORE_API Routing : public PublicObject {
|
||||
* @return false The index is out of bounds
|
||||
*/
|
||||
bool removeRoute(size_t i);
|
||||
bool removeRoute(const RouteIndex& i);
|
||||
bool removeRoute(const RouteIndex &i);
|
||||
bool removeAccess(size_t i);
|
||||
bool removeAccess(const AccessIndex& i);
|
||||
bool removeAccess(const AccessIndex &i);
|
||||
|
||||
//! Retrieve the number of objects of a particular class
|
||||
size_t routeCount() const;
|
||||
@ -116,14 +116,14 @@ class SC_SYSTEM_CORE_API Routing : public PublicObject {
|
||||
|
||||
//! Index access
|
||||
//! @return The object at index i
|
||||
Route* route(size_t i) const;
|
||||
Route* route(const RouteIndex& i) const;
|
||||
Route *route(size_t i) const;
|
||||
Route *route(const RouteIndex &i) const;
|
||||
|
||||
Access* access(size_t i) const;
|
||||
Access* access(const AccessIndex& i) const;
|
||||
Access *access(size_t i) const;
|
||||
Access *access(const AccessIndex &i) const;
|
||||
|
||||
//! Find an object by its unique attribute(s)
|
||||
Route* findRoute(const std::string& publicID) const;
|
||||
Route *findRoute(const std::string& publicID) const;
|
||||
|
||||
//! Implement Object interface
|
||||
bool assign(Object *other) override;
|
||||
|
||||
Reference in New Issue
Block a user