1 // Copyright (C) 2013-2015 CEA/DEN, EDF R&D, OPEN CASCADE
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 // Author : Frederic Pons (OpenCascade)
21 #include "XAO_Xao.hxx"
22 #include "XAO_XaoUtils.hxx"
23 #include "XAO_Step.hxx"
24 #include "XAO_BooleanStep.hxx"
25 #include "XAO_IntegerStep.hxx"
26 #include "XAO_DoubleStep.hxx"
27 #include "XAO_StringStep.hxx"
31 void Step::checkElementIndex(const int& element)
34 if (element < m_nbElements && element >= 0)
37 throw XAO_Exception(MsgBuilder() << "Element index is out of range [0, "
38 << m_nbElements-1 << "]: " << element);
41 void Step::checkComponentIndex(const int& component)
44 if (component < m_nbComponents && component >= 0)
47 throw XAO_Exception(MsgBuilder() << "Component index is out of range [0, "
48 << m_nbComponents-1 << "]: " << component);
51 void Step::checkNbElements(const int& nbElements)
54 if (nbElements == m_nbElements)
57 throw XAO_Exception(MsgBuilder() << "Invalid number of elements: " << nbElements
58 << ", expected " << m_nbElements);
61 void Step::checkNbComponents(const int& nbComponents)
64 if (nbComponents == m_nbComponents)
67 throw XAO_Exception(MsgBuilder() << "Invalid number of components: " << nbComponents
68 << ", expected " << m_nbComponents);
71 void Step::checkNbValues(const int& nbValues)
74 if (nbValues == m_nbElements * m_nbComponents)
77 throw XAO_Exception(MsgBuilder() << "Invalid number of values:" << nbValues
78 << ", expected " << m_nbElements * m_nbComponents);