Rev 520 |
Rev 671 |
Go to most recent revision |
Blame |
Compare with Previous |
Last modification |
View Log
| RSS feed
#ifndef DYNAMICSTANDOUT_H
#define DYNAMICSTANDOUT_H
#include "output.h"
#include "expression.h"
class DynamicStandOut : public Output
{
public:
DynamicStandOut();
virtual void exec();
virtual void setup();
private:
Expression mRUFilter;
Expression mTreeFilter;
struct SDynamicField {
int agg_index;
int var_index;
QString expression;
};
QList<SDynamicField> mFieldList;
};
#endif // DYNAMICSTANDOUT_H