Retrieves the Integer Value of a Property (for a given index) or 0
| 102 | |
| 103 | // Retrieves the Integer Value of a Property (for a given index) or 0 |
| 104 | inline const int32_t GetInt(const size_t nItem = 0) const |
| 105 | { |
| 106 | return std::atoi(GetString(nItem).c_str()); |
| 107 | } |
| 108 | |
| 109 | // Sets the Integer Value of a Property (for a given index) |
| 110 | inline void SetInt(const int32_t n, const size_t nItem = 0) |
nothing calls this directly
no outgoing calls
no test coverage detected