Select Git revision
SDL_sysevents.c.patch
Forked from
einsteinathome / graphicsframework
Source project has a limited visibility.
-
Oliver Bock authored
* The BOINC v6 screensaver expects the graphics app to bear a specific window class name * It exits if the graphics app can't be found by that name! * Ergo: patch SDL's default class name to trick (satisfy) BOINC :-)
Oliver Bock authored* The BOINC v6 screensaver expects the graphics app to bear a specific window class name * It exits if the graphics app can't be found by that name! * Ergo: patch SDL's default class name to trick (satisfy) BOINC :-)
plotdata.h 647 B
#ifndef PLOTDATA_H
#define PLOTDATA_H
#include <QObject>
#include <QVector>
#include <QString>
#include "common.h"
class PlotData : public QObject
{
Q_OBJECT
public:
PlotData();
// let's make these private and add getters/setters later :-p
QVector<double> m_dataLHO;
QVector<double> m_dataLLO;
QVector<double> m_dataVirgo;
double m_ampLHO;
double m_ampLLO;
double m_ampVirgo;
double m_phiLHO;
double m_phiLLO;
double m_phiVirgo;
double m_dtLHO;
double m_dtLLO;
double m_dtVirgo;
QString m_colorLHO;
QString m_colorLLO;
QString m_colorVirgo;
};
#endif // PLOTDATA_H