summaryrefslogtreecommitdiff
path: root/python/progress.h
diff options
context:
space:
mode:
Diffstat (limited to 'python/progress.h')
-rw-r--r--python/progress.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/python/progress.h b/python/progress.h
index bc1bd640..80cb2785 100644
--- a/python/progress.h
+++ b/python/progress.h
@@ -32,38 +32,6 @@
#define PyCbObj_BLOCK_THREADS Py_BLOCK_THREADS
#define PyCbObj_UNBLOCK_THREADS Py_UNBLOCK_THREADS
-typedef struct {
- PyObject_HEAD
- PyObject *op;
- PyObject *subop;
-#ifdef T_BOOL
- char major_change;
-#else
- int major_change;
-#endif
- float percent;
-} PyOpProgressObject;
-
-
-typedef struct {
- PyObject_HEAD
- int total_steps;
-} PyCdromProgressObject;
-
-typedef struct {
- PyObject_HEAD
- double last_bytes;
- double current_cps;
- double current_bytes;
- double total_bytes;
- double fetched_bytes;
- unsigned long elapsed_time;
- unsigned long total_items;
- unsigned long current_items;
-} PyAcquireProgressObject;
-
-
-
class PyCallbackObj {
protected:
PyObject *callbackInst;