Changeset 8594 for code/branches/presentation/src/libraries
- Timestamp:
- May 26, 2011, 1:57:01 PM (14 years ago)
- Location:
- code/branches/presentation/src/libraries
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation/src/libraries/core/Identifier.h
r8351 r8594 119 119 120 120 /// Returns the network ID to identify a class through the network. 121 inline constuint32_t getNetworkID() const { return this->networkID_; }121 inline uint32_t getNetworkID() const { return this->networkID_; } 122 122 void setNetworkID(uint32_t id); 123 123 -
code/branches/presentation/src/libraries/util/Exception.h
r7401 r8594 110 110 virtual const std::string& getDescription() const { return this->description_; } 111 111 //! Returns the line number on which the exception occurred. 112 virtual const unsigned int getLineNumber()const { return this->lineNumber_; }112 virtual unsigned int getLineNumber() const { return this->lineNumber_; } 113 113 //! Returns the function in which the exception occurred. 114 114 virtual const std::string& getFunctionName() const { return this->functionName_; }
Note: See TracChangeset
for help on using the changeset viewer.