geom/src/XAO/XAO_Step.hxx

128 lines
3.7 KiB
C++
Raw Normal View History

2013-08-27 11:27:42 +00:00
// Copyright (C) 2013 CEA/DEN, EDF R&D
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
//
// Author : Frederic Pons (OpenCascade)
#ifndef __XAO_STEP_HXX__
#define __XAO_STEP_HXX__
#include "XAO_Xao.hxx"
2013-08-27 11:27:42 +00:00
namespace XAO
{
class Step
{
protected:
2013-08-30 14:13:47 +00:00
/** Default constructor. */
2013-08-27 15:56:27 +00:00
Step() {}
2013-08-27 11:27:42 +00:00
public:
2013-08-30 14:13:47 +00:00
/**
* Destructor.
*/
virtual ~Step() {}
/**
* Gets the type of the step.
* @return
*/
2013-08-27 11:27:42 +00:00
virtual const XAO::Type getType() = 0;
/**
* Gets the step index.
* @return the index of the step.
*/
const int getStep() { return m_step; }
/**
* Sets the number of the step.
* @param step the index to set.
*/
void setStep(const int& step) { m_step = step; }
/**
* Gets the stamp of the index.
* @return the stamp of the index.
*/
const int getStamp() { return m_stamp; }
/**
* Sets the stamp of the index.
* @param stamp the stamp to set.
*/
void setStamp(const int& stamp) { m_stamp = stamp; }
2013-08-30 14:13:47 +00:00
/**
* Gets the number of components of the step.
* @return the number of components.
*/
2013-08-27 11:27:42 +00:00
const int countComponents() { return m_nbComponents; }
2013-08-30 14:13:47 +00:00
/**
* Gets the number of elements for the step.
* @return the number of elements.
*/
2013-08-27 11:27:42 +00:00
const int countElements() { return m_nbElements; }
2013-08-30 14:13:47 +00:00
/**
* Gets the number of values for the step.
* @return the number of values.
*/
2013-08-27 15:56:27 +00:00
const int countValues() { return m_nbElements * m_nbComponents; }
2013-08-27 11:27:42 +00:00
2013-08-30 14:13:47 +00:00
/**
* Gets a value as a string.
* @param element the index of the element.
* @param component the index of the component.
* @return the value as a string.
*/
2013-08-28 15:22:43 +00:00
virtual const std::string getStringValue(const int& element, const int& component) = 0;
2013-08-30 14:13:47 +00:00
/**
* Sets a value as a string
* @param element the index of the element.
* @param component the index of the component.
* @param value the string value.
* @throw SALOME_Exception if the value is not valid.
*/
2013-08-28 15:22:43 +00:00
virtual void setStringValue(const int& element, const int& component, const std::string& value) = 0;
2013-08-27 11:27:42 +00:00
protected:
void checkElementIndex(const int& element);
void checkComponentIndex(const int& component);
void checkNbElements(const int& nbElements);
void checkNbComponents(const int& nbComponents);
void checkNbValues(const int& nbValues);
2013-08-27 11:27:42 +00:00
protected:
2013-08-30 14:13:47 +00:00
/** the index of the step. */
2013-08-27 11:27:42 +00:00
int m_step;
2013-08-30 14:13:47 +00:00
/** The stamp of the step. */
2013-08-27 11:27:42 +00:00
int m_stamp;
2013-08-30 14:13:47 +00:00
/** The number of components. */
2013-08-27 11:27:42 +00:00
int m_nbComponents;
2013-08-30 14:13:47 +00:00
/** The number of elements. */
2013-08-27 11:27:42 +00:00
int m_nbElements;
};
}
#endif /* __XAO_STEP_HXX__ */