aboutsummaryrefslogtreecommitdiffstats
path: root/SQLiteStudio3/coreSQLiteStudio/plugins/confignotifiableplugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'SQLiteStudio3/coreSQLiteStudio/plugins/confignotifiableplugin.h')
-rw-r--r--SQLiteStudio3/coreSQLiteStudio/plugins/confignotifiableplugin.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/SQLiteStudio3/coreSQLiteStudio/plugins/confignotifiableplugin.h b/SQLiteStudio3/coreSQLiteStudio/plugins/confignotifiableplugin.h
new file mode 100644
index 0000000..d8a8f9b
--- /dev/null
+++ b/SQLiteStudio3/coreSQLiteStudio/plugins/confignotifiableplugin.h
@@ -0,0 +1,14 @@
+#ifndef CONFIGNOTIFIABLEPLUGIN_H
+#define CONFIGNOTIFIABLEPLUGIN_H
+
+#include <QVariant>
+
+class CfgEntry;
+
+class ConfigNotifiablePlugin
+{
+ public:
+ virtual void configModified(CfgEntry* key, const QVariant& value) = 0;
+};
+
+#endif // CONFIGNOTIFIABLEPLUGIN_H