Files
GoldenCheetah/src/FileIO/FixPyScript.h
riccioclista 9f1187390f Python data processors (#2951)
* Initial implementation of Python data processors
* Add RideEditor to PyFIx script editor
* Enable write-access to activity data for python fixes
* Add GC.deleteActivitySample method
* Add GC.deleteSeries method
* Check for python fix for changes before close
* Build python fixes menu dynamically
* Make python fixes first class data processors
* Add GC.postProcess method
* Check GC_WANT_PYTHON and "Enable Python" setting for python fixes
* Add GC.createXDataSeries method
* Clean up ScriptContext ctor mess
* Support editing xdata series
* PDP: Implement xdata append/remove methods
2019-12-19 22:05:51 -03:00

12 lines
181 B
C

#ifndef FIXPYSCRIPT_H
#define FIXPYSCRIPT_H
#include <QString>
struct FixPyScript {
QString name, path, source, iniKey, oldPath;
bool changed;
};
#endif // FIXPYSCRIPT_H