Subversion Repositories public iLand

Rev

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

#ifndef OUTPUTMANAGER_H
#define OUTPUTMANAGER_H
#include "output.h"

class OutputManager
{
public:
    OutputManager(); ///< create all outputs
    ~OutputManager();
    void setup();
private:
    QList<Output*> mOutputs; ///< list of outputs in system
};

#endif // OUTPUTMANAGER_H