Log In | Get Help   
Home My Page Projects Code Snippets Project Openings Mareframe
Summary Activity Forums Tracker Lists Tasks Docs Surveys News SCM Files
[mareframe] View of /trunk/gadget/formulavector.h
[mareframe] / trunk / gadget / formulavector.h Repository:
ViewVC logotype

View of /trunk/gadget/formulavector.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (download) (annotate)
Mon Feb 10 17:09:07 2014 UTC (10 years, 3 months ago) by agomez
File size: 2795 byte(s)
Initial version based on Gadget 2.2.00
#ifndef formulavector_h
#define formulavector_h

#include "formula.h"

/**
 * \class FormulaVector
 * \brief This class implements a dynamic vector of Formula values
 */
class FormulaVector {
public:
  /**
   * \brief This is the default FormulaVector constructor
   */
  FormulaVector() { size = 0; v = 0; };
  /**
   * \brief This is the FormulaVector constructor for a specified size
   * \param sz is the size of the vector to be created
   * \param initial is the initial value for all the entries of the vector
   */
  FormulaVector(int sz, Formula initial);
  /**
   * \brief This is the FormulaVector constructor for a specified size
   * \param sz is the size of the vector to be created
   * \param initial is the initial value for all the entries of the vector
   */
  FormulaVector(int sz, double initial);
  /**
   * \brief This is the FormulaVector constructor that creates a copy of an existing FormulaVector
   * \param initial is the FormulaVector to copy
   */
  FormulaVector(const FormulaVector& initial);
  /**
   * \brief This is the FormulaVector destructor
   * \note This will free all the memory allocated to all the elements of the vector
   */
  ~FormulaVector();
  /**
   * \brief This will add new blank (ie. NULL) entries to the vector
   * \param addsize is the number of blank entries that will be entered
   * \param keeper is the Keeper for the current model
   * \note The new elements of the vector will be created, and set to zero
   */
  void resize(int addsize, Keeper* keeper);
  /**
   * \brief This will delete an entry from the vector
   * \param pos is the element of the vector to be deleted
   * \param keeper is the Keeper for the current model
   * \note This will free the memory allocated to the deleted element of the vector
   */
  void Delete(int pos, Keeper* keeper);
  /**
   * \brief This will return the size of the vector
   * \return the size of the vector
   */
  int Size() const { return size; };
  /**
   * \brief This will return the value of an element of the vector
   * \param pos is the element of the vector to be returned
   * \return the value of the specified element
   */
  Formula& operator [] (int pos) { return v[pos]; };
  /**
   * \brief This will return the value of an element of the vector
   * \param pos is the element of the vector to be returned
   * \return the value of the specified element
   */
  const Formula& operator [] (int pos) const { return v[pos]; };
  /**
   * \brief This function will inform Keeper of the values of the stored Formula
   * \param keeper is the Keeper for the current model
   */
  void Inform(Keeper* keeper);
protected:
  /**
   * \brief This is the size of the vector
   */
  int size;
  /**
   * \brief This is the vector of Formula values
   */
  Formula* v;
};

#endif

root@forge.cesga.es
ViewVC Help
Powered by ViewVC 1.0.0  

Powered By FusionForge