Searched refs:ScalarWithExceptions (Results 1 – 1 of 1) sorted by relevance
25 class ScalarWithExceptions class28 ScalarWithExceptions() { init(); } in ScalarWithExceptions() function in ScalarWithExceptions29 ScalarWithExceptions(const float& _v) { init(); *v = _v; } in ScalarWithExceptions() function in ScalarWithExceptions30 ScalarWithExceptions(const ScalarWithExceptions& other) { init(); *v = *(other.v); } in ScalarWithExceptions() function in ScalarWithExceptions31 ~ScalarWithExceptions() { in ~ScalarWithExceptions()41 ScalarWithExceptions operator+(const ScalarWithExceptions& other) const in operator +()46 return ScalarWithExceptions(*v+*other.v); in operator +()49 ScalarWithExceptions operator-(const ScalarWithExceptions& other) const in operator -()50 { return ScalarWithExceptions(*v-*other.v); } in operator -()52 ScalarWithExceptions operator*(const ScalarWithExceptions& other) const in operator *()[all …]