Returns a string form of the value stored here.
| 45 | |
| 46 | // Returns a string form of the value stored here. |
| 47 | char const* IntElement::GetValueAsString() const |
| 48 | { |
| 49 | // note: this is a bit of a hack but the previous |
| 50 | // hack casted around the member function's const keyword |
| 51 | static std::string temp; // c_str() needs to remain valid |
| 52 | to_string(m_Value, temp); |
| 53 | return temp.c_str() ; |
| 54 | } |
| 55 | |
| 56 | char const* IntElement::GetValueAsString(std::string& buf) const |
| 57 | { |
no outgoing calls