Subversion Repositories public iLand

Rev

Rev 860 | Rev 866 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

#ifndef FOMESTP_H
#define FOMESTP_H

#include "activity.h"

/**
 * @brief The FMSTP class encapsulates one "stand treatment program", that consists of several "activities".
 */


class FMSTP
{
public:
    FMSTP();
private:
    Activity *mTendingActivity;
    Activity *mThinningActivity;
    Activity *mRegenerationActivity;

};

#endif // FOMESTP_H