Changeset 5775 for code/branches/core5
- Timestamp:
- Sep 23, 2009, 11:35:54 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core5/src/libraries/core/Identifier.h
r5738 r5775 532 532 533 533 /** 534 @brief Co pyconstructor: Assigns the given Identifier.534 @brief Constructor: Assigns the given Identifier. 535 535 @param identifier The Identifier 536 536 */ … … 538 538 { 539 539 this->operator=(identifier); 540 } 541 542 /** 543 @brief Copyconstructor: Assigns the identifier of the other SubclassIdentifier. 544 @param identifier The other SublcassIdentifier 545 */ 546 template <class O> 547 SubclassIdentifier(const SubclassIdentifier<O>& identifier) 548 { 549 this->operator=(identifier.getIdentifier()); 540 550 } 541 551 … … 545 555 @return The SubclassIdentifier itself 546 556 */ 547 SubclassIdentifier<T>& operator=(Identifier* identifier)557 const SubclassIdentifier<T>& operator=(Identifier* identifier) 548 558 { 549 559 if (!identifier || !identifier->isA(ClassIdentifier<T>::getIdentifier())) … … 568 578 569 579 /** 580 @brief Overloading of the = operator: assigns the identifier of the other SubclassIdentifier. 581 @param identifier The other SublcassIdentifier 582 */ 583 template <class O> 584 const SubclassIdentifier<T>& operator=(const SubclassIdentifier<O>& identifier) 585 { 586 return this->operator=(identifier.getIdentifier()); 587 } 588 589 /** 570 590 @brief Overloading of the * operator: returns the assigned identifier. 571 591 */ … … 612 632 COUT(1) << "Error: Class " << this->identifier_->getName() << " is not a " << ClassIdentifier<T>::getIdentifier()->getName() << "!" << std::endl; 613 633 COUT(1) << "Error: Couldn't fabricate a new Object." << std::endl; 614 COUT(1) << "Aborting..." << std::endl;615 634 } 616 635 else … … 618 637 COUT(1) << "An error occurred in SubclassIdentifier (Identifier.h):" << std::endl; 619 638 COUT(1) << "Error: Couldn't fabricate a new Object - Identifier is undefined." << std::endl; 620 COUT(1) << "Aborting..." << std::endl;621 639 } 622 640 … … 629 647 inline Identifier* getIdentifier() const 630 648 { return this->identifier_; } 631 632 // /** @brief Returns true, if the assigned identifier is at least of the given type. @param identifier The identifier to compare with */633 // inline bool isA(const Identifier* identifier) const634 // { return this->identifier_->isA(identifier); }635 //636 // /** @brief Returns true, if the assigned identifier is exactly of the given type. @param identifier The identifier to compare with */637 // inline bool isExactlyA(const Identifier* identifier) const638 // { return this->identifier_->isExactlyA(identifier); }639 //640 // /** @brief Returns true, if the assigned identifier is a child of the given identifier. @param identifier The identifier to compare with */641 // inline bool isChildOf(const Identifier* identifier) const642 // { return this->identifier_->isChildOf(identifier); }643 //644 // /** @brief Returns true, if the assigned identifier is a direct child of the given identifier. @param identifier The identifier to compare with */645 // inline bool isDirectChildOf(const Identifier* identifier) const646 // { return this->identifier_->isDirectChildOf(identifier); }647 //648 // /** @brief Returns true, if the assigned identifier is a parent of the given identifier. @param identifier The identifier to compare with */649 // inline bool isParentOf(const Identifier* identifier) const650 // { return this->identifier_->isParentOf(identifier); }651 //652 // /** @brief Returns true, if the assigned identifier is a direct parent of the given identifier. @param identifier The identifier to compare with */653 // inline bool isDirectParentOf(const Identifier* identifier) const654 // { return this->identifier_->isDirectParentOf(identifier); }655 649 656 650 private:
Note: See TracChangeset
for help on using the changeset viewer.