#ifndef timevariablevector_h #define timevariablevector_h #include "timevariable.h" /** * \class TimeVariableVector * \brief This class implements a dynamic vector of TimeVariable values */ class TimeVariableVector { public: /** * \brief This is the default TimeVariableVector constructor */ TimeVariableVector() { size = 0; v = 0; }; /** * \brief This is the TimeVariableVector destructor * \note This will free all the memory allocated to all the elements of the vector */ ~TimeVariableVector(); /** * \brief This will add new empty entries to the vector * \param addsize is the number of new entries to the vector * \note All elements of the vector will be created, and set to zero */ void setsize(int addsize); /** * \brief This will add new empty entries to the vector and inform Keeper of the change * \param addsize is the number of new entries to the vector * \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* const keeper); /** * \brief This will add one new entry to the vector and inform Keeper of the change * \param tvar is the new TimeVariable entry to the vector * \param keeper is the Keeper for the current model */ void resize(const TimeVariable& tvar, Keeper* const keeper); /** * \brief This will return the size of the vector * \return the size of the vector */ int Size() const { return size; }; /** * \brief This function will read the value of the TimeVariable entries from file * \param infile is the CommentStream to read the parameters from * \param TimeInfo is the TimeClass for the current model * \param keeper is the Keeper for the current model */ void read(CommentStream& infile, const TimeClass* const TimeInfo, Keeper* const keeper); /** * \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 */ TimeVariable& 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 TimeVariable& operator [] (int pos) const { return v[pos]; }; /** * \brief This function will check to see if the TimeVariable values have changed * \param TimeInfo is the TimeClass for the current model * \return 1 if the values have changed, 0 otherwise */ int didChange(const TimeClass* const TimeInfo) const; /** * \brief This function will update the TimeVariable values * \param TimeInfo is the TimeClass for the current model */ void Update(const TimeClass* const TimeInfo); protected: /** * \brief This is the size of the vector */ int size; /** * \brief This is the vector of TimeVariable values */ TimeVariable* v; }; #endif