Salome HOME
Issue #1865 : initial implementation of fields results and high level API
[modules/shaper.git] / src / ModelHighAPI / ModelHighAPI_Integer.cpp
index 3742dc5fad7487d457225106c3ff0b6bc123f724..fc17205d6608ca440596b79ac9b8f06c2635438e 100644 (file)
@@ -43,3 +43,9 @@ void ModelHighAPI_Integer::fillAttribute(
     case VT_STRING: theAttribute->setText(myString); return;
   }
 }
+
+int ModelHighAPI_Integer::intValue() const
+{
+  // needed for array of integer, which supports no text
+  return myInt;
+}