Subversion Repositories public iLand

Rev

Rev 395 | Rev 520 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 395 Rev 504
Line 14... Line 14...
14
#include "standout.h"
14
#include "standout.h"
15
#include "standdeadout.h"
15
#include "standdeadout.h"
16
#include "managementout.h"
16
#include "managementout.h"
17
#include "dynamicstandout.h"
17
#include "dynamicstandout.h"
18
#include "productionout.h"
18
#include "productionout.h"
-
 
19
#include "saplingout.h"
19
20
20
21
21
22
22
OutputManager::OutputManager()
23
OutputManager::OutputManager()
23
{
24
{
Line 27... Line 28...
27
    mOutputs.append(new StandOut);
28
    mOutputs.append(new StandOut);
28
    mOutputs.append(new DynamicStandOut);
29
    mOutputs.append(new DynamicStandOut);
29
    mOutputs.append(new ProductionOut);
30
    mOutputs.append(new ProductionOut);
30
    mOutputs.append(new StandDeadOut);
31
    mOutputs.append(new StandDeadOut);
31
    mOutputs.append(new ManagementOut);
32
    mOutputs.append(new ManagementOut);
-
 
33
    mOutputs.append(new SaplingOut);
32
34
33
}
35
}
34
36
35
OutputManager::~OutputManager()
37
OutputManager::~OutputManager()
36
{
38
{