summaryrefslogtreecommitdiff
path: root/src/autosaver.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/autosaver.h')
-rw-r--r--src/autosaver.h21
1 files changed, 15 insertions, 6 deletions
diff --git a/src/autosaver.h b/src/autosaver.h
index 8931da13..b486fcb9 100644
--- a/src/autosaver.h
+++ b/src/autosaver.h
@@ -23,13 +23,22 @@
#ifndef AUTOSAVER_H
#define AUTOSAVER_H
-#include <QtCore>
+// Qt Includes
+#include <QtCore/QObject>
+#include <QtCore/QBasicTimer>
+#include <QtCore/QTime>
-/*
- This class will call the save() slot on the parent object when the parent changes.
- It will wait several seconds after changed() to combining multiple changes and
- prevent continuous writing to disk.
- */
+// Forward Declarations
+#include <QtCore/QTimerEvent>
+
+/**
+ * This class will call the save() slot on the parent object when the parent changes.
+ * It will wait several seconds after changed() to combining multiple changes and
+ * prevent continuous writing to disk.
+ *
+ */
+
+>>>>>>> master:src/autosaver.h
class AutoSaver : public QObject
{
Q_OBJECT