Changeset 11083 for code/trunk/src/libraries/core/class
- Timestamp:
- Jan 21, 2016, 1:59:04 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/class/SubclassIdentifier.h
r11071 r11083 92 92 public: 93 93 /// Constructor: Automaticaly assigns the Identifier of the given class. 94 SubclassIdentifier() 94 SubclassIdentifier() : identifier_(nullptr) 95 95 { 96 96 this->identifier_ = ClassIdentifier<T>::getIdentifier(); … … 98 98 99 99 /// Constructor: Assigns the given Identifier. 100 SubclassIdentifier(Identifier* identifier) 100 SubclassIdentifier(Identifier* identifier) : identifier_(nullptr) 101 101 { 102 102 this->operator=(identifier); … … 105 105 /// Copyconstructor: Assigns the identifier of another SubclassIdentifier. 106 106 template <class O> 107 SubclassIdentifier(const SubclassIdentifier<O>& identifier) 107 SubclassIdentifier(const SubclassIdentifier<O>& identifier) : identifier_(nullptr) 108 108 { 109 109 this->operator=(identifier.getIdentifier());
Note: See TracChangeset
for help on using the changeset viewer.