summaryrefslogtreecommitdiffstats
path: root/Sidebar.h
diff options
context:
space:
mode:
Diffstat (limited to 'Sidebar.h')
-rw-r--r--Sidebar.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/Sidebar.h b/Sidebar.h
new file mode 100644
index 0000000..7d30afc
--- /dev/null
+++ b/Sidebar.h
@@ -0,0 +1,16 @@
+#ifndef SIDEBAR_H_
+#define SIDEBAR_H_
+
+#include <gtk/gtk.h>
+
+
+class Sidebar {
+ public:
+ virtual ~Sidebar() {}
+
+ virtual GtkWidget* getWidget() = 0;
+
+ virtual void update() = 0;
+};
+
+#endif /*SIDEBAR_H_*/