Retrieves the Real Value of a Property (for a given index) or 0.0
| 90 | |
| 91 | // Retrieves the Real Value of a Property (for a given index) or 0.0 |
| 92 | inline const double GetReal(const size_t nItem = 0) const |
| 93 | { |
| 94 | return std::atof(GetString(nItem).c_str()); |
| 95 | } |
| 96 | |
| 97 | // Sets the Real Value of a Property (for a given index) |
| 98 | inline void SetReal(const double d, const size_t nItem = 0) |
nothing calls this directly
no outgoing calls
no test coverage detected